回复 8楼hheric的帖子
问题一,我添加 DLL 后就可以正常运行了,可以找一台有开发环境并且没有安装 tx 的机器调试下,看看缺少哪个dll。
问题二,禁用方法如下:
- private void Button_Click_1(object sender, RoutedEventArgs e)
- {
- this.tx1.Select(0, 0);
- int keywordLocation = this.tx1.Find("礼仪");
- while (keywordLocation != -1)
- {
- this.tx1.Selection.TextBackColor = System.Drawing.Color.FromArgb(100, 100, 100, 100);
- keywordLocation = this.tx1.Find("礼仪",keywordLocation+2, TXTextControl.FindOptions.NoMessageBox);
- }
- }
复制代码 |