1 instantiation of ScrollGlyph
PresentationFramework.Luna (1)
parent\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (1)
165bamlType.DefaultConstructor = delegate() { return new Microsoft.Windows.Themes.ScrollGlyph(); };
58 references to ScrollGlyph
PresentationFramework.Luna (58)
Microsoft\Windows\Themes\ScrollChrome.cs (55)
94typeof(ScrollGlyph), 97ScrollGlyph.None, 106public static ScrollGlyph GetScrollGlyph(DependencyObject element) 110return (ScrollGlyph)element.GetValue(ScrollGlyphProperty); 118public static void SetScrollGlyph(DependencyObject element, ScrollGlyph value) 125private ScrollGlyph ScrollGlyph 127get { return (ScrollGlyph)GetValue(ScrollGlyphProperty); } 132ScrollGlyph glyph = (ScrollGlyph)o; 133return glyph == ScrollGlyph.None || 134glyph == ScrollGlyph.LeftArrow || 135glyph == ScrollGlyph.RightArrow || 136glyph == ScrollGlyph.UpArrow || 137glyph == ScrollGlyph.DownArrow || 138glyph == ScrollGlyph.VerticalGripper || 139glyph == ScrollGlyph.HorizontalGripper; 229ScrollGlyph glyph = ScrollGlyph; 270case ScrollGlyph.LeftArrow: 271case ScrollGlyph.RightArrow: 272case ScrollGlyph.HorizontalGripper: 280case ScrollGlyph.UpArrow: 281case ScrollGlyph.DownArrow: 282case ScrollGlyph.VerticalGripper: 354private void DrawGlyph(DrawingContext dc, ScrollGlyph glyph, ref Rect bounds) 361if ((brush != null) && (glyph != ScrollGlyph.None)) 365case ScrollGlyph.HorizontalGripper: 369case ScrollGlyph.VerticalGripper: 373case ScrollGlyph.LeftArrow: 374case ScrollGlyph.RightArrow: 375case ScrollGlyph.UpArrow: 376case ScrollGlyph.DownArrow: 572private void DrawArrow(DrawingContext dc, Brush brush, Rect bounds, ScrollGlyph glyph) 580case ScrollGlyph.LeftArrow: 581case ScrollGlyph.RightArrow: 585case ScrollGlyph.UpArrow: 586case ScrollGlyph.DownArrow: 624case ScrollGlyph.LeftArrow: 628case ScrollGlyph.RightArrow: 632case ScrollGlyph.UpArrow: 636case ScrollGlyph.DownArrow: 1286ScrollGlyph glyph = ScrollGlyph; 1289if (glyph == ScrollGlyph.VerticalGripper) 1318else if (glyph == ScrollGlyph.HorizontalGripper) 1627ScrollGlyph scrollGlyph = ScrollGlyph; 1629if (scrollGlyph == ScrollGlyph.HorizontalGripper || scrollGlyph == ScrollGlyph.VerticalGripper) 1847ScrollGlyph scrollGlyph = ScrollGlyph; 1849if (scrollGlyph == ScrollGlyph.HorizontalGripper || scrollGlyph == ScrollGlyph.VerticalGripper) 2002ScrollGlyph glyph = ScrollGlyph; 2005else if (RenderPressed && (glyph == ScrollGlyph.HorizontalGripper || glyph == ScrollGlyph.VerticalGripper) ) 2280ScrollGlyph scrollGlyph = ScrollGlyph; 2302if (scrollGlyph == ScrollGlyph.HorizontalGripper || scrollGlyph == ScrollGlyph.VerticalGripper)
parent\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (3)
139bamlMember.TypeConverterType = typeof(Microsoft.Windows.Themes.ScrollGlyph); 164typeof(Microsoft.Windows.Themes.ScrollGlyph)); 166bamlType.TypeConverterType = typeof(Microsoft.Windows.Themes.ScrollGlyph);