示例#1
0
文件: Basic.cs 项目: xCMNx/QRBase
		public OpenFileValueItem(string path, string filter, bool exists = true) : base(path)
		{
			_filter = filter;
			_exists = exists;
			Exec = new BasicCommand(_Exec);
		}
示例#2
0
文件: Basic.cs 项目: xCMNx/QRBase
		void init(System.Windows.Media.Color color)
		{
			Value = color;
			Exec = new BasicCommand(_Exec);
		}
示例#3
0
文件: Basic.cs 项目: xCMNx/QRBase
		public PathValueItem(string path) : base(path)
		{
			Exec = new BasicCommand(_Exec);
		}