CSharpCrazy
CSharpCrazy

Reputation: 25

How to change Font's ForeColor in ScintillaNet?

I want to Change Scintilla Net Text Editor's Font Fore color to Black in C#.Net. i changed like in C# font color. But it doesn't work. How can i do that? Is that change in Styles? Please Please....answer me..i am having difficult. Thanks you for your time. Have a nice day.

Upvotes: 0

Views: 2182

Answers (1)

Medo Medo
Medo Medo

Reputation: 1018

ScintillaNET C# (eg: XML Editor)

 scintilla.Lexer = Lexer.Xml;    
 scintilla.Styles[Style.Default].ForeColor = Color.Blue;

Upvotes: 1

Related Questions