- 修改
general.looknfeel
文件
<WidgetLook name="General/Button">
<PropertyDefinition name="url" initialValue="" redrawOnWrite="true"/>
[...]
- 在layout中定义一个按钮
<Window Type="General/Button" Name="building/window/open" >
<Property Name="text_theme" Value="打开网址" />
<Property Name="url" Value="" />
[...]
- 使用脚本设置属性
var button = FUNCTION_DATA.get_windows("building/window/open");
button.SetProperty("url", "http://google.com");
- 使用脚本获取属性
var button = FUNCTION_DATA.get_windows("building/window/open");
var url = button.GetProperty("url");