34 lines
680 B
C#
34 lines
680 B
C#
using Prism.Mvvm;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OrpaonEMS.Core
|
|
{
|
|
public class cbxItem : BindableBase
|
|
{
|
|
private string key;
|
|
/// <summary>
|
|
/// Key值
|
|
/// </summary>
|
|
public string Key
|
|
{
|
|
get { return key; }
|
|
set { key = value; RaisePropertyChanged(); }
|
|
}
|
|
|
|
|
|
private string text;
|
|
/// <summary>
|
|
/// Text值
|
|
/// </summary>
|
|
public string Text
|
|
{
|
|
get { return text; }
|
|
set { text = value; RaisePropertyChanged(); }
|
|
}
|
|
}
|
|
}
|