Hi all,
I would like to highlight the all codes like Visual Studio. The default types ( "string", "bool", "int", ...) are highlighting on blue, but the .Net types ("String", "ArrayList", ... ) still in black.
I use this instruction to use the visual studio render.
syntaxEditor.Renderer = new VisualStudio2005SyntaxEditorRenderer();
When I use the syntax editor with C# code like this example:
// TODO
DataTable dt = new DataTable();
dt.Columns.Add(new DataColumn("Value", typeof(String)));
dt.Columns.Add(new DataColumn("Value2", typeof(String)));
dt.Rows.Add(new object[]{"V1", "V11"});
dt.Rows.Add(new object[]{"V2", "V22"});
The texts DataTable, DataColumn, String are in black but I want them in light green.