控件属性设置

栏目:云星空知识作者:金蝶来源:金蝶云社区发布:2024-09-23浏览:1

控件属性设置

1、可见性设置
this.View.GetControl("FButton").SetCustomPropertyValue("visible", true);
2、锁定性设置
this.View.GetControl("FDate").SetCustomPropertyValue("disabled", true);
3、按钮、标签背景色设置
this.View.GetControl("FButton").SetCustomPropertyValue("backcolor", "115,208,241");
4、按钮、标签字体颜色设置
this.View.GetControl("FButton").SetCustomPropertyValue("forecolor", "255,255,255");
5、按钮、标签文本值设置
this.View.GetControl("FLable").SetCustomPropertyValue("value", "我是标签");
6、高度、宽度设置
this.View.GetControl("FDocEntity").SetCustomPropertyValue("height", 100);
this.View.GetControl("FDocEntity").SetCustomPropertyValue("width", 320);
7、设置页签控件的当前选中页签
this.View.GetControl("FTab").SetCustomPropertyValue("selectedIndex", 2);
8、设置控件背景图片
this.View.GetControl("FButton").SetCustomPropertyValue("backgroundurl", "img.webp");

9、图片控件设置图片
this.View.GetControl("FImage").SetCustomPropertyValue("imageKey", "img.webp");


注:图片默认路径是website/images/mobile/目录下,如果不是在这个目录下,这要设置相对路径:

如果是website/images/mobile/myimg/img.webp,则.SetCustomPropertyValue("imageKey", "myimg/img.webp");

如果是website/tempfilePath/xxx.webp,则.SetCustomPropertyValue("imageKey", "../tempfilePath/xxx.webp");


如果是单据体上的控件,只能用行格式化的方式:https://vip.kingdee.com/article/42857


控件属性设置

1、可见性设置this.View.GetControl("FButton").SetCustomPropertyValue("visible", true);2、锁定性设置this.View.GetControl("FDate").S...
点击下载文档
确认删除?
回到顶部
客服QQ
  • 客服QQ点击这里给我发消息