| File: Microsoft\Windows\Themes\ScrollGlyph.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\Themes\PresentationFramework.Luna\PresentationFramework.Luna.csproj (PresentationFramework.Luna) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.Windows.Themes { /// <summary> /// Types and orientations of ScrollBar glyphs. /// </summary> public enum ScrollGlyph { /// <summary> /// No glyph /// </summary> None, /// <summary> /// Arrow pointing left. /// </summary> LeftArrow, /// <summary> /// Arrow pointing right. /// </summary> RightArrow, /// <summary> /// Arrow pointing up. /// </summary> UpArrow, /// <summary> /// Arrow pointing down. /// </summary> DownArrow, /// <summary> /// Vertical gripper. /// </summary> VerticalGripper, /// <summary> /// Horizontal gripper. /// </summary> HorizontalGripper, // NOTE: if you add or remove any values in this enum, be sure to update ScrollChrome.IsValidScrollGlyph() } }