1 instantiation of ScrollGlyph
PresentationFramework.Luna (1)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (1)
181DefaultConstructor = delegate () { return new Microsoft.Windows.Themes.ScrollGlyph(); },
58 references to ScrollGlyph
PresentationFramework.Luna (58)
Microsoft\Windows\Themes\ScrollChrome.cs (55)
83typeof(ScrollGlyph), 86ScrollGlyph.None, 95public static ScrollGlyph GetScrollGlyph(DependencyObject element) 99return (ScrollGlyph)element.GetValue(ScrollGlyphProperty); 107public static void SetScrollGlyph(DependencyObject element, ScrollGlyph value) 114private ScrollGlyph ScrollGlyph 116get { return (ScrollGlyph)GetValue(ScrollGlyphProperty); } 121ScrollGlyph glyph = (ScrollGlyph)o; 122return glyph == ScrollGlyph.None || 123glyph == ScrollGlyph.LeftArrow || 124glyph == ScrollGlyph.RightArrow || 125glyph == ScrollGlyph.UpArrow || 126glyph == ScrollGlyph.DownArrow || 127glyph == ScrollGlyph.VerticalGripper || 128glyph == ScrollGlyph.HorizontalGripper; 218ScrollGlyph glyph = ScrollGlyph; 259case ScrollGlyph.LeftArrow: 260case ScrollGlyph.RightArrow: 261case ScrollGlyph.HorizontalGripper: 269case ScrollGlyph.UpArrow: 270case ScrollGlyph.DownArrow: 271case ScrollGlyph.VerticalGripper: 343private void DrawGlyph(DrawingContext dc, ScrollGlyph glyph, ref Rect bounds) 350if ((brush != null) && (glyph != ScrollGlyph.None)) 354case ScrollGlyph.HorizontalGripper: 358case ScrollGlyph.VerticalGripper: 362case ScrollGlyph.LeftArrow: 363case ScrollGlyph.RightArrow: 364case ScrollGlyph.UpArrow: 365case ScrollGlyph.DownArrow: 569private void DrawArrow(DrawingContext dc, Brush brush, Rect bounds, ScrollGlyph glyph) 577case ScrollGlyph.LeftArrow: 578case ScrollGlyph.RightArrow: 582case ScrollGlyph.UpArrow: 583case ScrollGlyph.DownArrow: 623case ScrollGlyph.LeftArrow: 627case ScrollGlyph.RightArrow: 631case ScrollGlyph.UpArrow: 635case ScrollGlyph.DownArrow: 1329ScrollGlyph glyph = ScrollGlyph; 1332if (glyph == ScrollGlyph.VerticalGripper) 1361else if (glyph == ScrollGlyph.HorizontalGripper) 1670ScrollGlyph scrollGlyph = ScrollGlyph; 1672if (scrollGlyph == ScrollGlyph.HorizontalGripper || scrollGlyph == ScrollGlyph.VerticalGripper) 1890ScrollGlyph scrollGlyph = ScrollGlyph; 1892if (scrollGlyph == ScrollGlyph.HorizontalGripper || scrollGlyph == ScrollGlyph.VerticalGripper) 2055ScrollGlyph glyph = ScrollGlyph; 2058else if (RenderPressed && (glyph == ScrollGlyph.HorizontalGripper || glyph == ScrollGlyph.VerticalGripper) ) 2355ScrollGlyph scrollGlyph = ScrollGlyph; 2377if (scrollGlyph == ScrollGlyph.HorizontalGripper || scrollGlyph == ScrollGlyph.VerticalGripper)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (3)
151TypeConverterType = typeof(Microsoft.Windows.Themes.ScrollGlyph) 179typeof(Microsoft.Windows.Themes.ScrollGlyph)) 182TypeConverterType = typeof(Microsoft.Windows.Themes.ScrollGlyph),