[]
此特性为活字格V9.1新增功能。
public class MyPluginCommand : Command
{
[PageNameProperty]
public string PageName { get; set; }
}
在设计器中效果如下:
默认情况下,内建页面是不能被选择的,如果需要选择内建页面,需要设置IncludeBuiltInPage,代码如下:
public class MyPluginCommand : Command
{
[PageNameProperty(IncludeBuiltInPage = true)]
public string PageName { get; set; }
}
注意:标注PageNameProperty的属性类型必须是 string。