问题标签 [richtextbox]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
5 回答
23554 浏览

.net - 修改 RichTextBox 中的默认选项卡大小

有什么方法可以更改 .NET RichTextBox 中的默认选项卡大小?它目前似乎设置为相当于 8 个空格,这对我来说有点大。

编辑:为了澄清,我想将“\t”的全局默认设置为控件的 4 个空格。据我了解, SelectionTabs 属性要求您首先选择所有文本,然后通过数组选择选项卡宽度。如果必须,我会这样做,但如果可能的话,我宁愿只更改一次全局默认值,这样我就不必每次都这样做。

0 投票
6 回答
9844 浏览

c# - 如何防止 RichTextBox 刷新其显示?

我有一个 RichTextBox,我需要经常更新 Text 属性,但是当我这样做时,RichTextBox 会令人讨厌地“闪烁”,因为它会在整个方法调用中刷新所有内容。

我希望找到一种简单的方法来暂时抑制屏幕刷新,直到我的方法完成,但我在网上找到的唯一方法是覆盖 WndProc 方法。我采用了这种方法,但有一些困难和副作用,而且它也使调试变得更加困难。似乎必须有更好的方法来做到这一点。有人可以指出我更好的解决方案吗?

0 投票
1 回答
1515 浏览

winforms - RichTextBox 和下划线颜色

有什么办法可以改变 a 中下划线的颜色RichTextBox吗?我已经尝试过了,但它似乎不起作用。有人知道这些枚举值是从哪里来的吗?没有看到任何文档。

谢谢。

0 投票
4 回答
11103 浏览

c# - 如何将滚动条向上移动一行?(在 C# 富文本框中)

对于我的 C# RichTextBox,我想以编程方式执行与单击垂直滚动条顶部的向上箭头相同的操作,这会将 RichTextBox 显示向上移动一行。这个代码是什么?谢谢!

0 投票
17 回答
73797 浏览

jquery - jQuery 最好的富文本编辑器是什么?

Stackoverflow 网站上的类似这样的东西会很好!

或者与 jQuery $() 标签不冲突的非 jQuery 的东西会很棒。

0 投票
1 回答
4415 浏览

wpf - Does WPF's TextBox support spell-check dictionaries for the Netherlands?

The RichTextBox supports a spellcheck option which is very nice. (SpellCheck.IsEnabled = true)

But I cannot seem to get it to another language. (I live in the Netherlands.. ;))

Does any of you have an experience with the SpellCheck option of TextBox?

I know it can be change by changing the keyboard settings, but I want to change it in the application.

What I have tried so far (and did not work):

  • Changing the CurrentCulture on the current Thread.
  • Changing the Language property in xaml in "nl-NL"
  • Changing the Language property in code with the XmlLanguage.GetLanguage("nl-NL");

You should not get any spelling errors with the following line:

"Dit is een Nederlandse tekst."

The RFC 3066 language key of my language is "nl-NL"

Many thanks, Rick

0 投票
1 回答
5774 浏览

.net - Winform 在 RichTextBox 控件中创建表格

我需要在 Windows 窗体应用程序中使用 RichTextBox 控件创建一个简单的编辑器,该应用程序包括创建表格的能力。

是否可以在 RichTextBox 控件中创建表格?

如果是这样,任何有关执行此操作的最佳方法的指针将不胜感激。

0 投票
3 回答
336 浏览

richtextbox - 如何向网站添加富文本编辑支持?

我需要一些带有富文本编辑的基本 CMS 功能。在堆栈溢出时,有一个常规的 textarea 编辑控件,支持 Markdown 样式语法格式。这超出了我的用户的范围,所以我想要一个可以在网站上输入的富编辑控件之类的东西。我知道这是可能的,因为很多网站都这样做,但我不知道从哪里开始。

0 投票
2 回答
4848 浏览

c# - 覆盖 .NET RichTextBox 上的快捷键

我正在使用RichTextBox(.NET WinForms 3.5)并且想覆盖一些标准的快捷键......例如,我不希望Ctrl+I通过 RichText 方法使文本斜体,而是运行我的自己处理文本的方法。

有任何想法吗?

0 投票
1 回答
330 浏览

c# - 富文本框 CtrlI

我在 .NET WinForms 中有一个 RichTextBox。我一直在用 KeyUp 连接热键。一切正常,除了 CtrlI。轮到我的处理程序时,选择已被替换为“\t”。我关闭了 ShortcutsEnabled,但没有任何区别。有任何想法吗?