3 changed files with 47 additions and 96 deletions
@ -1,73 +0,0 @@ |
|||
namespace Avalonia.Controls.Primitives |
|||
{ |
|||
/// <summary>
|
|||
/// Provides customizable resource strings for ScrollBar context menu items.
|
|||
/// </summary>
|
|||
public static class ScrollBarResources |
|||
{ |
|||
/// <summary>
|
|||
/// Gets or sets the text for "Scroll Here" menu item.
|
|||
/// </summary>
|
|||
public static string ScrollHere { get; set; } = "Scroll Here"; |
|||
|
|||
/// <summary>
|
|||
/// Gets or sets the text for "Top" menu item.
|
|||
/// </summary>
|
|||
public static string Top { get; set; } = "Top"; |
|||
|
|||
/// <summary>
|
|||
/// Gets or sets the text for "Bottom" menu item.
|
|||
/// </summary>
|
|||
public static string Bottom { get; set; } = "Bottom"; |
|||
|
|||
/// <summary>
|
|||
/// Gets or sets the text for "Page Up" menu item.
|
|||
/// </summary>
|
|||
public static string PageUp { get; set; } = "Page Up"; |
|||
|
|||
/// <summary>
|
|||
/// Gets or sets the text for "Page Down" menu item.
|
|||
/// </summary>
|
|||
public static string PageDown { get; set; } = "Page Down"; |
|||
|
|||
/// <summary>
|
|||
/// Gets or sets the text for "Scroll Up" menu item.
|
|||
/// </summary>
|
|||
public static string ScrollUp { get; set; } = "Scroll Up"; |
|||
|
|||
/// <summary>
|
|||
/// Gets or sets the text for "Scroll Down" menu item.
|
|||
/// </summary>
|
|||
public static string ScrollDown { get; set; } = "Scroll Down"; |
|||
|
|||
/// <summary>
|
|||
/// Gets or sets the text for "Left Edge" menu item.
|
|||
/// </summary>
|
|||
public static string LeftEdge { get; set; } = "Left Edge"; |
|||
|
|||
/// <summary>
|
|||
/// Gets or sets the text for "Right Edge" menu item.
|
|||
/// </summary>
|
|||
public static string RightEdge { get; set; } = "Right Edge"; |
|||
|
|||
/// <summary>
|
|||
/// Gets or sets the text for "Page Left" menu item.
|
|||
/// </summary>
|
|||
public static string PageLeft { get; set; } = "Page Left"; |
|||
|
|||
/// <summary>
|
|||
/// Gets or sets the text for "Page Right" menu item.
|
|||
/// </summary>
|
|||
public static string PageRight { get; set; } = "Page Right"; |
|||
|
|||
/// <summary>
|
|||
/// Gets or sets the text for "Scroll Left" menu item.
|
|||
/// </summary>
|
|||
public static string ScrollLeft { get; set; } = "Scroll Left"; |
|||
|
|||
/// <summary>
|
|||
/// Gets or sets the text for "Scroll Right" menu item.
|
|||
/// </summary>
|
|||
public static string ScrollRight { get; set; } = "Scroll Right"; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue