MyNes_src/MyNes/MMB/ManagedMessageBoxButtons.cs
2024-07-03 10:36:42 +08:00

29 lines
955 B
C#

namespace MMB;
public sealed class ManagedMessageBoxButtons
{
public static string[] OK = new string[1] { "&OK" };
public static string[] OKNo = new string[2] { "&OK", "&No" };
public static string[] OKNoCancel = new string[3] { "&OK", "&No", "&Cancel" };
public static string[] OKCancel = new string[2] { "&OK", "&Cancel" };
public static string[] Yes = new string[1] { "&Yes" };
public static string[] YesNo = new string[2] { "&Yes", "&No" };
public static string[] YesNoCancel = new string[3] { "&Yes", "&No", "&Cancel" };
public static string[] SaveDontsaveCancel = new string[3] { "&Save", "&Don't save", "&Cancel" };
public static string[] SaveDontsave = new string[2] { "&Save", "&Don't save" };
public static string[] Abort = new string[1] { "&Abort" };
public static string[] AbortRetryIgnore = new string[3] { "&Abort", "&Retry", "&Ignore" };
public static string[] RetryCancel = new string[2] { "&Retry", "&Cancel" };
}