1 instantiation of ScrollGlyph
PresentationFramework.Luna (1)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (1)
169bamlType.DefaultConstructor = delegate() { return new Microsoft.Windows.Themes.ScrollGlyph(); };
58 references to ScrollGlyph
PresentationFramework.Luna (58)
Microsoft\Windows\Themes\ScrollChrome.cs (55)
88typeof(ScrollGlyph), 91ScrollGlyph.None, 100public static ScrollGlyph GetScrollGlyph(DependencyObject element) 104return (ScrollGlyph)element.GetValue(ScrollGlyphProperty); 112public static void SetScrollGlyph(DependencyObject element, ScrollGlyph value) 119private ScrollGlyph ScrollGlyph 121get { return (ScrollGlyph)GetValue(ScrollGlyphProperty); } 126ScrollGlyph glyph = (ScrollGlyph)o; 127return glyph == ScrollGlyph.None || 128glyph == ScrollGlyph.LeftArrow || 129glyph == ScrollGlyph.RightArrow || 130glyph == ScrollGlyph.UpArrow || 131glyph == ScrollGlyph.DownArrow || 132glyph == ScrollGlyph.VerticalGripper || 133glyph == ScrollGlyph.HorizontalGripper; 223ScrollGlyph glyph = ScrollGlyph; 264case ScrollGlyph.LeftArrow: 265case ScrollGlyph.RightArrow: 266case ScrollGlyph.HorizontalGripper: 274case ScrollGlyph.UpArrow: 275case ScrollGlyph.DownArrow: 276case ScrollGlyph.VerticalGripper: 348private void DrawGlyph(DrawingContext dc, ScrollGlyph glyph, ref Rect bounds) 355if ((brush != null) && (glyph != ScrollGlyph.None)) 359case ScrollGlyph.HorizontalGripper: 363case ScrollGlyph.VerticalGripper: 367case ScrollGlyph.LeftArrow: 368case ScrollGlyph.RightArrow: 369case ScrollGlyph.UpArrow: 370case ScrollGlyph.DownArrow: 566private void DrawArrow(DrawingContext dc, Brush brush, Rect bounds, ScrollGlyph glyph) 574case ScrollGlyph.LeftArrow: 575case ScrollGlyph.RightArrow: 579case ScrollGlyph.UpArrow: 580case ScrollGlyph.DownArrow: 618case ScrollGlyph.LeftArrow: 622case ScrollGlyph.RightArrow: 626case ScrollGlyph.UpArrow: 630case ScrollGlyph.DownArrow: 1280ScrollGlyph glyph = ScrollGlyph; 1283if (glyph == ScrollGlyph.VerticalGripper) 1312else if (glyph == ScrollGlyph.HorizontalGripper) 1621ScrollGlyph scrollGlyph = ScrollGlyph; 1623if (scrollGlyph == ScrollGlyph.HorizontalGripper || scrollGlyph == ScrollGlyph.VerticalGripper) 1841ScrollGlyph scrollGlyph = ScrollGlyph; 1843if (scrollGlyph == ScrollGlyph.HorizontalGripper || scrollGlyph == ScrollGlyph.VerticalGripper) 1996ScrollGlyph glyph = ScrollGlyph; 1999else if (RenderPressed && (glyph == ScrollGlyph.HorizontalGripper || glyph == ScrollGlyph.VerticalGripper) ) 2274ScrollGlyph scrollGlyph = ScrollGlyph; 2296if (scrollGlyph == ScrollGlyph.HorizontalGripper || scrollGlyph == ScrollGlyph.VerticalGripper)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (3)
143bamlMember.TypeConverterType = typeof(Microsoft.Windows.Themes.ScrollGlyph); 168typeof(Microsoft.Windows.Themes.ScrollGlyph)); 170bamlType.TypeConverterType = typeof(Microsoft.Windows.Themes.ScrollGlyph);