码迷,mamicode.com
首页 > 其他好文 > 详细

TKCORE框架学习之入门篇(五)--代码表的使用

时间:2021-03-09 13:05:51      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:box   length   order   splay   use   学习   文件   lang   lis   

代码表使用

与 Combo 控件结合用作下拉列表

在 Xml/Data 文件夹文件夹下的 xml 文件中使用:

<tk:Field DataType="string">
  <tk:FieldName>USER_SEX</tk:FieldName>
  <tk:DisplayName>
    <tk:Content>性别</tk:Content>
  </tk:DisplayName>
  <tk:Length>2</tk:Length>
  <tk:CodeTable RegName="CodeSex"/>
  <tk:Layout Layout="PerUnit" UnitNum="1"/>
  <tk:Control Control="Combo" Order="110" DefaultShow="All"/>
</tk:Field>

需要设定 CodeTable 标签的 RegName 属性

<tk:CodeTable RegName="CD_SEX"></tk:CodeTable>

并指定 Control="Combo":

<tk:Control Control="Combo" Order="20" DefaultShow="All"/>

效果图

技术图片

与 RadioGroup 控件结合使用

在 Xml/Data 文件夹文件夹下的 xml 文件中使用:

<tk:Field DataType="string">
  <tk:FieldName>USER_SEX</tk:FieldName>
  <tk:DisplayName>
    <tk:Content>性别</tk:Content>
  </tk:DisplayName>
  <tk:Length>2</tk:Length>
  <tk:CodeTable RegName="CodeSex"/>
  <tk:Layout Layout="PerUnit" UnitNum="1"/>
  <tk:Control Control="RadioGroup" Order="110" DefaultShow="All"/>
</tk:Field>

需要设定 CodeTable 标签的 RegName 属性

<tk:CodeTable RegName="CD_SEX"></tk:CodeTable>

并指定 Control="Combo":

<tk:Control Control="RadioGroup" Order="20" DefaultShow="All"/>

效果图如下:

技术图片

与 CheckBoxList 结合用作多选控件

在 Xml/Data 文件夹下的 xml 文件中使用:

<tk:Field DataType="string">
  <tk:FieldName>USER_SEX</tk:FieldName>
  <tk:DisplayName>
    <tk:Content>性别</tk:Content>
  </tk:DisplayName>
  <tk:Length>2</tk:Length>
  <tk:CodeTable RegName="CodeSex"/>
  <tk:Layout Layout="PerUnit" UnitNum="1"/>
  <tk:Control Control="CheckBoxList" Order="110" DefaultShow="All"/>
</tk:Field>

需要设定 CodeTable 标签的 RegName 属性

<tk:CodeTable RegName="CD_SEX"></tk:CodeTable>

并指定 Control="CheckBoxList":

<tk:Control Control="CheckBoxList" Order="20" DefaultShow="All"/>

效果图

技术图片

TKCORE框架学习之入门篇(五)--代码表的使用

标签:box   length   order   splay   use   学习   文件   lang   lis   

原文地址:https://www.cnblogs.com/tkcore/p/14498316.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!