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