如何通过在c#中为notepad ++编写插件来设置和删除scintilla文档中查找文本的颜色。我尝试了以下代码:

Win32.SendMessage(PluginBase.GetCurrentScintilla(), SciMsg.SCI_STYLESETBACK, 0, 0xFFFF00);

帮助我突出显示特定文本。

最佳答案

如果要更改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

10-07 13:16