Questions tagged [avalonedit]

AvalonEdit is a .NET WPF-based source code editor component developed for SharpDevelop 4.0 "Mirador".

AvalonEdit supports .NET 3.5 SP1 and .NET 4.0.

Source code can be downloaded from the SharpDevelop source code repository.

As SharpDevelop 4.0 is still in development the documentation for AvalonEdit is very sparse. All available materials are compiled in an article on SharpDevelop wiki.

Resources

Using AvalonEdit (WPF Text Editor)
Making AvalonEdit MVVM compatible

190 questions
0
votes
1 answer

How to set the canvas background color for AvalonEdit in C#

I want to have different background colors for the AvalonEdit control but although I see solutions for coloring individual lines I cannot seem to find one just to set the entire background color. Usually this is a simple task in most controls. The…
0
votes
1 answer

AvalonEdit how to modify a specific line

How can I for example change the font only for line 15 ? I've used .ScrollTo(15,4); but there is no command to highlight or anything when I'm at line 15.(I want to do this by code dynamically). So are there any ways to edit just one line ? And also…
Vlad Vlad
  • 132
  • 2
  • 13
0
votes
1 answer

Preventing the caret from positioning itself between the line start and the first VisualLineElement (at VisualColumn == 0)

I'm working on a project that has taken a dependency on AvalonEdit to manage a document. Certain lines in this document are flagged to use a specific indentation which cannot be modified from within AvalonEdit. I've managed to achieve this with…
0
votes
0 answers

ElementHost repainting

I'm using AvalonEdit in my WinForms application. AvalonEdit is placed onto control with ElementHost on it. Application has RadDock from Telerik and AvalonEdit can be placed on its windows. Often I get problem with ElementHost repainting. I don't…
Yuriy
  • 2,670
  • 6
  • 33
  • 48
0
votes
1 answer

AvalonEdit - Searching Completion Data

I've wired up the CompletionData no problem, inserting etc into the Avalon Edit control. The challenge is the searching algorithm. In the example below, I want new-obj to "match" *New-Object**** in the list and not do a partial find on…
Doug Finke
  • 6,675
  • 1
  • 31
  • 47
0
votes
1 answer

AvalonEdit: Right margin per DocumentLine

I am currently using AvalonEdit to develop a Movie Script editor in .NET 4. Each element type in a script (i.e.: Character, dialog line, etc.) should have a right margin. In other words, after a certain number of characters per line, the following…
Hussein Khalil
  • 1,585
  • 2
  • 25
  • 47
0
votes
2 answers

AvalonEdit Folding Strategy for VB

I am developing a C# application which supports scripting. Does any have a sample FoldingStrategy for Visual Basic code to be used for code folding for AvalonEdit?
noway
  • 2,585
  • 7
  • 41
  • 61
0
votes
1 answer

how can I set CharacterCasing property on avalonedit?

I need only Uppercase on avalonedit. how can I attach the property? Or is there any other alternate way?
Andrew
  • 95
  • 8
-1
votes
0 answers

How do I export current XSHD from AvalonEdit

I want to export current ruleset (C#) from AvalonEdit instance in my WPF app. I cant find anything useful on the internet. Anyone has done it?
Boppity Bop
  • 9,613
  • 13
  • 72
  • 151
-1
votes
1 answer

How to recolor a specific word in AvalonEdit?

I'm developing a (.NET-based) programming language and an IDE for it in WPF. I want type names to have different colors based on wheter they are reference types, value types or interfaces (just like in Visual Studio). For this I have made my…
Jonas _
  • 69
  • 1
  • 6
1 2 3
12
13