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