找回密码
 立即注册

QQ登录

只需一步,快速开始

gw0506
超级版主   /  发表于:2017-5-25 14:10:20
11#
实在没办法了,发厂商了,有回复了告诉你。
回复 使用道具 举报
gw0506
超级版主   /  发表于:2017-5-26 18:20:44
12#
  1.         private void button1_Click(object sender, EventArgs e)
  2.         {
  3.             //sets the focus to the control
  4.             textControl1.Focus();

  5.             //makes control characters visible
  6.             textControl1.ControlChars = true;

  7.             //enters a control character into the Text Control
  8.             textControl1.Text = "\r\n";
  9.             
  10.             textControl1.Selection.Start = 1;
  11.             textControl1.Tables.Add(1, 3,100);
  12.             
  13.             textControl1.Selection.Start = 1;

  14.             //creates TextChar at the first position which is the control character
  15.             TXTextControl.TextChar controlChar = textControl1.TextChars[textControl1.Selection.Start];

  16.             //removes the control character
  17.             textControl1.TextChars.Remove(controlChar);
  18.         }
复制代码
回复 使用道具 举报
12
您需要登录后才可以回帖 登录 | 立即注册
返回顶部