mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
调整demo的combobox样式
This commit is contained in:
@@ -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" }
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user