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