⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 banktellerconstants.cs

📁 wpf和cab的结合使用源码(转载)
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;

namespace BankTellerCommon
{
	public class UIExtensionConstants
	{
		public static readonly string CUSTOMERCONTEXT = "CustomerContext";

		public static readonly string FILE = "File";

		public static readonly string MAINMENU = "MainMenu";

		public static readonly string FILEDROPDOWN = "FileDropDown";

		public static readonly string MAINSTATUS = "MainStatus";

		public static readonly string QUEUE = "Queue";

		public static readonly string CUSTOMER = "Customer";
	}

	/// <summary>
	/// Used for creating and handling commands.
	/// These are constants because they are used in attributes.
	/// </summary>
	public class CommandConstants
	{
		public const string ACCEPT_CUSTOMER = "QueueAcceptCustomer";

		public const string EDIT_CUSTOMER = "EditCustomer";

		public const string CUSTOMER_MOUSEOVER = "CustomerMouseOver";
	}

	/// <summary>
	/// Used for handling State.
	/// These are constants because they are used in attributes.
	/// </summary>
	public class StateConstants
	{
		public const string CUSTOMER = "Customer2";
	}

	public class WorkspacesConstants
	{
		public static readonly string SHELL_SIDEBAR = "sideBarWorkspace";
		public static readonly string SHELL_CONTENT = "contentWorkspace";
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -