using GalaSoft.MvvmLight; using System; namespace GroupLine.App.ModelDto { public class ComboBoxModel : ObservableObject { private String key; /// /// Key值 /// public String Key { get { return key; } set { key = value; RaisePropertyChanged(() => Key); } } private String text; /// /// Text值 /// public String Text { get { return text; } set { text = value; RaisePropertyChanged(() => Text); } } } }