Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 C# 3.5 Windows 窗体应用程序中,我有一个网格 (DataGridView)。我想突出显示某个单元格内的一个单词,但网格只允许我突出显示整个单元格。
网格或任何可用的用户控件是否有任何调整,建立在 DataGridView 上,可以突出显示 DataGridView 单元格内的单个单词?
解决方案是RichTextBox在您的DataGridView. 然后,您将能够突出显示单个单词并完全控制单元格中的格式。看看这篇文章:
RichTextBox
DataGridView
DataGridView 中的 RichTextBox 列