ViewModel
//属性定义
Dictionary<int, string> _selGroupList;
/// <summary>
/// 分组下拉列表
/// </summary>
public Dictionary<int, string> selGroupList
{
get { return _selGroupList; }
set
{
_selGroupList = value;
NotifyOfPropertyChange("selGroupList");
}
//属性定义
Dictionary<int, string> _selGroupList;
/// <summary>
/// 分组下拉列表
/// </summary>
public Dictionary<int, string> selGroupList
{
get { return _selGroupList; }
set
{
_selGroupList = value;
NotifyOfPropertyChange("selGroupList");
}