1 instantiation of ScrollGlyph
PresentationFramework.Royale (1)
parent\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (1)
165bamlType.DefaultConstructor = delegate() { return new Microsoft.Windows.Themes.ScrollGlyph(); };
52 references to ScrollGlyph
PresentationFramework.Royale (52)
Microsoft\Windows\Themes\ScrollChrome.cs (49)
76typeof(ScrollGlyph), 79ScrollGlyph.None, 88public static ScrollGlyph GetScrollGlyph(DependencyObject element) 92return (ScrollGlyph)element.GetValue(ScrollGlyphProperty); 100public static void SetScrollGlyph(DependencyObject element, ScrollGlyph value) 107private ScrollGlyph ScrollGlyph 109get { return (ScrollGlyph) GetValue(ScrollGlyphProperty); } 114ScrollGlyph glyph = (ScrollGlyph)o; 115return glyph == ScrollGlyph.None || 116glyph == ScrollGlyph.LeftArrow || 117glyph == ScrollGlyph.RightArrow || 118glyph == ScrollGlyph.UpArrow || 119glyph == ScrollGlyph.DownArrow || 120glyph == ScrollGlyph.VerticalGripper || 121glyph == ScrollGlyph.HorizontalGripper; 211ScrollGlyph glyph = ScrollGlyph; 252case ScrollGlyph.LeftArrow: 253case ScrollGlyph.RightArrow: 254case ScrollGlyph.HorizontalGripper: 262case ScrollGlyph.UpArrow: 263case ScrollGlyph.DownArrow: 264case ScrollGlyph.VerticalGripper: 314private void DrawGlyph(DrawingContext dc, ScrollGlyph glyph, ref Rect bounds) 321if ((brush != null) && (glyph != ScrollGlyph.None)) 325case ScrollGlyph.HorizontalGripper: 329case ScrollGlyph.VerticalGripper: 333case ScrollGlyph.LeftArrow: 334case ScrollGlyph.RightArrow: 335case ScrollGlyph.UpArrow: 336case ScrollGlyph.DownArrow: 532private void DrawArrow(DrawingContext dc, Brush brush, Rect bounds, ScrollGlyph glyph) 540case ScrollGlyph.LeftArrow: 541case ScrollGlyph.RightArrow: 545case ScrollGlyph.UpArrow: 546case ScrollGlyph.DownArrow: 584case ScrollGlyph.LeftArrow: 588case ScrollGlyph.RightArrow: 592case ScrollGlyph.UpArrow: 596case ScrollGlyph.DownArrow: 807if (ScrollGlyph == ScrollGlyph.VerticalGripper) 815if (ScrollGlyph == ScrollGlyph.VerticalGripper) 821if (ScrollGlyph == ScrollGlyph.VerticalGripper) 921ScrollGlyph scrollGlyph = ScrollGlyph; 923if (scrollGlyph == ScrollGlyph.HorizontalGripper || scrollGlyph == ScrollGlyph.VerticalGripper) 986ScrollGlyph scrollGlyph = ScrollGlyph; 988if (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);