WinForms里
代码如下
TXTextControl.ApplicationField label = new TXTextControl.ApplicationField(TXTextControl.ApplicationFieldFormat.MSWord, "Label", "", new string[] { });
label.DoubledInputPosition = true;
label.Editable = true;
label.ShowActivated = true;
label.Deleteable = true;
label.Name = "Label";
label.Text = "职业";
this.textControl1.ApplicationFields.Add(label);
我添加一个比如 职业 用于显示 它的位置能不能固定呢 现在是它前面输入文字 它就向后走 删除就向前走 或者是其他的控件可以固定位置的? |
|