调整demo的combobox样式

This commit is contained in:
艾竹
2022-12-01 23:12:13 +08:00
parent 992a4bb83b
commit 503b92f40e
9 changed files with 412 additions and 159 deletions

View File

@@ -23,7 +23,10 @@ namespace AIStudio.Wpf.Flowchart.ViewModels
[StyleName("UserIdsStyle")]
public List<string> UserIds
{
get { return _userIds; }
get
{
return _userIds;
}
set
{
SetProperty(ref _userIds, value);
@@ -35,7 +38,10 @@ namespace AIStudio.Wpf.Flowchart.ViewModels
[StyleName("RoleIdsStyle")]
public List<string> RoleIds
{
get { return _roleIds; }
get
{
return _roleIds;
}
set
{
SetProperty(ref _roleIds, value);
@@ -47,7 +53,10 @@ namespace AIStudio.Wpf.Flowchart.ViewModels
[StyleName("ActTypeStyle")]
public string ActType
{
get { return _actType; }
get
{
return _actType;
}
set
{
SetProperty(ref _actType, value);
@@ -72,6 +81,18 @@ namespace AIStudio.Wpf.Flowchart.ViewModels
}
}
public override Dictionary<string, string> PropertiesSetting
{
get
{
return new Dictionary<string, string>()
{
{ "Text","文本" },
{"UserIds", "用户" },
{"RoleIds", "角色" },
{"ActType", "or/and" }
};
}
}
}
}