我是新手,在做电子病历,看到TXTextControl.DocumentServer.Fields空间中有很多封装的控件,例如CheckBoxContentControl,DropDownListContentControl等。但是我按照说明在txcontrol中增加了这些组件后,却无法点击和下拉,请教一下,我需要设置一下txcontrol的模式吗?怎么设置呢?代码如下:
DropDownListContentControl dropDown = new DropDownListContentControl();
dropDown.ListItems.Add(new DropDownListItem("1", "111"));
textControl1.ApplicationFields.Add(dropDown.ApplicationField);
|
|