ICSharpCode.TextEditor is a syntax highlighting control for .NET program. It comes from the open source IDE SharpDevelop. It's available under LGPL license.
Questions tagged [icsharpcode]
70 questions
2
votes
1 answer
icsharpcode SharpZipLib is not setting password correctly on zip file
The zip file appears to be created successfully on my drive, and contains the files I specified in filePaths[]
The issue is the that despite setting a password to 'hello' it will say the password is incorrect when I try and unzip the file.
///…

William
- 1,837
- 2
- 22
- 36
2
votes
1 answer
How to change text color at ICSharpCode.AvalonEdit.TextEditor?
Good day!
I am trying to make simple editor of code, so I want to be able to select the text line and change it color to red, using ICSharpCode.AvalonEdit.TextEditor.
But I do not know how to use it.
Can you help me to change color of text…

user2545071
- 1,408
- 2
- 24
- 46
2
votes
1 answer
Configuring Intellisense in ICSharpCode.TextEditor
I can't understand how to let Intellisense work in ICSharpCode.TextEditor. As of today, replies are incomplete. On the web, there are no samples...
I need to display a completion box with my custom keywords.
Any help?

Robert
- 887
- 3
- 12
- 13
2
votes
1 answer
AvalonEdit: How to make it right-to-left?
I'm trying to make the avalonedit right-to-left layout, so that supporting languages that are right-to-left (e.g. Arabic)
The code seems to be too large to be understood, I need at least to know where my changes would be? What are main modules of…
user586399
2
votes
0 answers
icsharpcode.texteditor MouseDown or MouseUp event doesn't work
private void textEditorConrol_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Right)
{
}
}
This event does not work out when i click.
I'm using the same event for 4…

Max Meleshko
- 43
- 4
2
votes
1 answer
AvalonEdit insert text doesnt work
I can't insert a char into my AvalonEdit TextEditor.
void editor_TextArea_TextEntered(object sender, TextCompositionEventArgs e)
{
if (e.Text == "{" || e.Text == "(" || e.Text == "[" || e.Text == "\"" || e.Text == "\'")
{
…

Giraffe
- 188
- 1
- 16
2
votes
2 answers
ANTLR3 Syntax Highlighting the Hidden Channel in a ICSharpCode.TextEditor
I have been making some progress in the development of our little DSL but have run into a problem when trying to highlight the comments in the TextEditorControl we are using. The ICSharpCode control is great by the way and in combination with ANTLR…

Ian Carson
- 139
- 1
- 10
2
votes
2 answers
Running Visual Studio 2012 Express c# from USB
I recently joined a programming club at my highschool, and wanted to be able to use usb to run Visual Studio 2012 c# Express Edition from their laptops. I don't want to change any of the actual computer files because it is against the rules. After…

user1594328
- 569
- 2
- 7
- 17
2
votes
2 answers
Using ICSharpCode.TextEditor on VB.NET
I've integrated ICSharpCode.TextEditor into VB.NET and it run smoothly without error. But, I cannot find in properties window the property to enable or select the syntax highlighting features as well as intellisense. I don't have any experience with…

ByulTaeng
- 1,269
- 1
- 21
- 40
1
vote
0 answers
How to get fire if text selected and its replace
in c# how to trigger if text is selected
example here is if copy event happen getting triggered with below code
private void Hook_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.C && e.Control)
{
…

today sprint
- 13
- 4
1
vote
2 answers
Program to reverse string and make it uppercase?
I wrote this program like the title says but it says system.char[] for some reason.
using System;
public class q2
{
public static void upperNreverse(string inp)
{
char[] inpChar = inp.ToCharArray();
Array.Reverse(inpChar);
…

Saad Saleem
- 75
- 8
1
vote
2 answers
How to Auto-Complete a tag with ICsharpCode.TextEditor component?
I have added the ICSharpCode.TextEditor.dll component to my Visual Studio 2017 reference in my C# project. Next, i want to find out a way to Auto-complete a tag. I have provided a GIF image below on what i mean.
I have provided a code that i tried…

Robin
- 127
- 10
1
vote
1 answer
What ever happened to #WT?
What ever happed to #WT (SharpWT) by ICSharpCode, a port of SWT from JVM to .NET? I can't find it anywhere. Thanks.
I've tried looking forward it on the net, but cant find it. It would be especially useful to find as I wrote a program in Fantom…

Sam Saint-Pettersen
- 511
- 5
- 21
1
vote
0 answers
How to resolve SharpZipBaseException 'Header checksum illegal'?
I am currently working on an azure function that reads messages from a service bus queue. I am in a testing phase and my service bus queue gets about 50 messages per minute. (in a production environment it would be thousands of data points coming in…

hfires
- 113
- 10
1
vote
0 answers
Attaching Windows Form To Unity3D made game
It works on other winform programs, but not in the game itself.
I'm trying to make an extra menu or "mod menu" but it's invisible.
The button for message box to test if winform works. When I click "nowhere" in up left corner, it shows me the…

Oopsy
- 11
- 4