如何在 c#中编写记事本++的插件,为scintilla文档中的查找文本设置和删除颜色。我尝试了以下代码:
Win32.SendMessage(PluginBase.GetCurrentScintilla(), SciMsg.SCI_STYLESETBACK, 0, 0xFFFF00);
帮我突出显示特定文字。
答案 0 :(得分:0)
如果您想更改selection background color,请尝试:
Win32.SendMessage(PluginBase.GetCurrentScintilla(),
SciMsg.SCI_SETSELBACK, 1, 0xFFFF00);
如果您想更改selection foreground color,请尝试:
Win32.SendMessage(PluginBase.GetCurrentScintilla(),
SciMsg.SCI_SETSELFORE, 1, 0xFF0000);
要重置默认颜色,请传递0
而不是1
。