1 instantiation of ScrollGlyph
PresentationFramework.Luna (1)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (1)
182DefaultConstructor = delegate () { return new Microsoft.Windows.Themes.ScrollGlyph(); },
58 references to ScrollGlyph
PresentationFramework.Luna (58)
Microsoft\Windows\Themes\ScrollChrome.cs (55)
84typeof(ScrollGlyph), 87ScrollGlyph.None, 96public static ScrollGlyph GetScrollGlyph(DependencyObject element) 100return (ScrollGlyph)element.GetValue(ScrollGlyphProperty); 108public static void SetScrollGlyph(DependencyObject element, ScrollGlyph value) 115private ScrollGlyph ScrollGlyph 117get { return (ScrollGlyph)GetValue(ScrollGlyphProperty); } 122ScrollGlyph glyph = (ScrollGlyph)o; 123return glyph == ScrollGlyph.None || 124glyph == ScrollGlyph.LeftArrow || 125glyph == ScrollGlyph.RightArrow || 126glyph == ScrollGlyph.UpArrow || 127glyph == ScrollGlyph.DownArrow || 128glyph == ScrollGlyph.VerticalGripper || 129glyph == ScrollGlyph.HorizontalGripper; 219ScrollGlyph glyph = ScrollGlyph; 260case ScrollGlyph.LeftArrow: 261case ScrollGlyph.RightArrow: 262case ScrollGlyph.HorizontalGripper: 270case ScrollGlyph.UpArrow: 271case ScrollGlyph.DownArrow: 272case ScrollGlyph.VerticalGripper: 344private void DrawGlyph(DrawingContext dc, ScrollGlyph glyph, ref Rect bounds) 351if ((brush != null) && (glyph != ScrollGlyph.None)) 355case ScrollGlyph.HorizontalGripper: 359case ScrollGlyph.VerticalGripper: 363case ScrollGlyph.LeftArrow: 364case ScrollGlyph.RightArrow: 365case ScrollGlyph.UpArrow: 366case ScrollGlyph.DownArrow: 570private void DrawArrow(DrawingContext dc, Brush brush, Rect bounds, ScrollGlyph glyph) 578case ScrollGlyph.LeftArrow: 579case ScrollGlyph.RightArrow: 583case ScrollGlyph.UpArrow: 584case ScrollGlyph.DownArrow: 624case ScrollGlyph.LeftArrow: 628case ScrollGlyph.RightArrow: 632case ScrollGlyph.UpArrow: 636case ScrollGlyph.DownArrow: 1330ScrollGlyph glyph = ScrollGlyph; 1333if (glyph == ScrollGlyph.VerticalGripper) 1362else if (glyph == ScrollGlyph.HorizontalGripper) 1671ScrollGlyph scrollGlyph = ScrollGlyph; 1673if (scrollGlyph == ScrollGlyph.HorizontalGripper || scrollGlyph == ScrollGlyph.VerticalGripper) 1891ScrollGlyph scrollGlyph = ScrollGlyph; 1893if (scrollGlyph == ScrollGlyph.HorizontalGripper || scrollGlyph == ScrollGlyph.VerticalGripper) 2056ScrollGlyph glyph = ScrollGlyph; 2059else if (RenderPressed && (glyph == ScrollGlyph.HorizontalGripper || glyph == ScrollGlyph.VerticalGripper) ) 2356ScrollGlyph scrollGlyph = ScrollGlyph; 2378if (scrollGlyph == ScrollGlyph.HorizontalGripper || scrollGlyph == ScrollGlyph.VerticalGripper)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (3)
152TypeConverterType = typeof(Microsoft.Windows.Themes.ScrollGlyph) 180typeof(Microsoft.Windows.Themes.ScrollGlyph)) 183TypeConverterType = typeof(Microsoft.Windows.Themes.ScrollGlyph),