1 instantiation of ScrollGlyph
PresentationFramework.Royale (1)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (1)
169
bamlType.DefaultConstructor = delegate() { return new Microsoft.Windows.Themes.
ScrollGlyph
(); };
52 references to ScrollGlyph
PresentationFramework.Royale (52)
Microsoft\Windows\Themes\ScrollChrome.cs (49)
70
typeof(
ScrollGlyph
),
73
ScrollGlyph
.None,
82
public static
ScrollGlyph
GetScrollGlyph(DependencyObject element)
86
return (
ScrollGlyph
)element.GetValue(ScrollGlyphProperty);
94
public static void SetScrollGlyph(DependencyObject element,
ScrollGlyph
value)
101
private
ScrollGlyph
ScrollGlyph
103
get { return (
ScrollGlyph
) GetValue(ScrollGlyphProperty); }
108
ScrollGlyph
glyph = (
ScrollGlyph
)o;
109
return glyph ==
ScrollGlyph
.None ||
110
glyph ==
ScrollGlyph
.LeftArrow ||
111
glyph ==
ScrollGlyph
.RightArrow ||
112
glyph ==
ScrollGlyph
.UpArrow ||
113
glyph ==
ScrollGlyph
.DownArrow ||
114
glyph ==
ScrollGlyph
.VerticalGripper ||
115
glyph ==
ScrollGlyph
.HorizontalGripper;
205
ScrollGlyph
glyph = ScrollGlyph;
246
case
ScrollGlyph
.LeftArrow:
247
case
ScrollGlyph
.RightArrow:
248
case
ScrollGlyph
.HorizontalGripper:
256
case
ScrollGlyph
.UpArrow:
257
case
ScrollGlyph
.DownArrow:
258
case
ScrollGlyph
.VerticalGripper:
308
private void DrawGlyph(DrawingContext dc,
ScrollGlyph
glyph, ref Rect bounds)
315
if ((brush != null) && (glyph !=
ScrollGlyph
.None))
319
case
ScrollGlyph
.HorizontalGripper:
323
case
ScrollGlyph
.VerticalGripper:
327
case
ScrollGlyph
.LeftArrow:
328
case
ScrollGlyph
.RightArrow:
329
case
ScrollGlyph
.UpArrow:
330
case
ScrollGlyph
.DownArrow:
526
private void DrawArrow(DrawingContext dc, Brush brush, Rect bounds,
ScrollGlyph
glyph)
534
case
ScrollGlyph
.LeftArrow:
535
case
ScrollGlyph
.RightArrow:
539
case
ScrollGlyph
.UpArrow:
540
case
ScrollGlyph
.DownArrow:
578
case
ScrollGlyph
.LeftArrow:
582
case
ScrollGlyph
.RightArrow:
586
case
ScrollGlyph
.UpArrow:
590
case
ScrollGlyph
.DownArrow:
801
if (ScrollGlyph ==
ScrollGlyph
.VerticalGripper)
809
if (ScrollGlyph ==
ScrollGlyph
.VerticalGripper)
815
if (ScrollGlyph ==
ScrollGlyph
.VerticalGripper)
915
ScrollGlyph
scrollGlyph = ScrollGlyph;
917
if (scrollGlyph ==
ScrollGlyph
.HorizontalGripper || scrollGlyph ==
ScrollGlyph
.VerticalGripper)
980
ScrollGlyph
scrollGlyph = ScrollGlyph;
982
if (scrollGlyph ==
ScrollGlyph
.HorizontalGripper || scrollGlyph ==
ScrollGlyph
.VerticalGripper)
src\Microsoft.DotNet.Wpf\src\Themes\Shared\Microsoft\Windows\Themes\KnownTypeHelper.cs (3)
143
bamlMember.TypeConverterType = typeof(Microsoft.Windows.Themes.
ScrollGlyph
);
168
typeof(Microsoft.Windows.Themes.
ScrollGlyph
));
170
bamlType.TypeConverterType = typeof(Microsoft.Windows.Themes.
ScrollGlyph
);