Tagged Questions

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

learn more… | top users | synonyms

5
votes
2answers
826 views

Embedding word 2010 editor in a wpf application

How do I use the word editor in a WPF application? Is it possible using windows forms hosting in WPF only? Is there another way to accomplish that? I found AvalonEdit but it does not have features ...
3
votes
1answer
175 views

How to set the code selection programatically in AvalonEdit?

I'm using AvalonEdit in a Microsoft Surface application. Since the Contacts are handled a little bit different there than in a normal WPF application, I want to set the code selection programatically. ...
3
votes
1answer
528 views

AvalonEdit: highlight current line even when not focused

I'm using AvalonEdit, and I want the user to always be able to see which line the caret is on, even when the editor does not have focus. To that end, I've found and adapted some code that uses a ...
3
votes
1answer
704 views

How do I create an AvalonEdit syntax file (.xshd) and embed it into my assembly?

I'm trying to define some custom highlighting rules for AvalonEdit. There doesn't seem to be any documentation for this -- there's some documentation on the file format, but nothing on how to actually ...
3
votes
1answer
446 views

Using AvalonEdit in Sharpdevelop 3.x

I am very curious to know if it is possible to replace the normal ICSharpCode.TextEditor with AvalonEdit in Sharpdevelop 3.x. Frankly speaking AvalonEdit is way too better than ICSharpCode.TextEditor, ...
2
votes
1answer
165 views

ScintillaNET vs AvalonEdit for providing scripting interface for a WPF Application

I am working on a project which includes implementing a scripting interface for my WPF (.Net4) windows Application. I am curious if anyone can suggest a preferred editor, AvalonEdit vs ScintillaNET. ...
2
votes
1answer
73 views

AvalonEdit highlight matching characters

Is there an easy way using Avalon edit to highlight matching brackets and other characters like {}""?
2
votes
1answer
58 views

AvalonEdit for ironPython Scripts?

Is it possible to use AvalonEdit control in a WPF application as an ironPython script editor? The requirement is to have syntax highlighting and inline script validation. If possible having ...
2
votes
1answer
127 views

Bind AvalonEdit to XML

I'm using an AvalonEdit control in my WPF project, and I use it with XML syntax highlighting. I am just using it as an XML editor (no need for tree view on the side or anything). What I want is: ...
2
votes
1answer
255 views

Loading AvalonEdit syntax highlighting definitions from resource

I have an AvalonEdit text box, and I want to include syntax highlighting. I've already created my .xshd file, and I have it in my project as a Resource. Now how do I apply it to my AvalonEdit box? ...
2
votes
4answers
224 views

Weird scrollbar UI in hosted WPF composite control

My windows forms application hosts AvalonEdit (the composite WPF control in question) in one of its forms to cater to its text editing requirements. Here's the code I use: WPFHost = gcnew ...
2
votes
1answer
386 views

BraceFolding in AvalonEdit

I use the BraceFoldingStrategy by Daniel Grünwald: public IEnumerable<NewFolding> CreateNewFoldings(ITextSource document) { List<NewFolding> newFoldings = new ...
2
votes
2answers
435 views

WPF Control inside ElementHost is invisible

I have a WPF control (the ICSharpCode.AvalonEdit.TextEditor) in a Winforms project inside an ElementHost. I have confirmed with the debugger that the TextEditor is actually set as the child of the ...
2
votes
1answer
420 views

AvalonEdit XSHD-Ruleset (for tex)

I'm using the AvalonEdit control in and I have a small problem with the xshd-ruleset (for tex): There is a section in the original file 'syntaxdefinition for TeX document 2001 by Mike Krueger ...
2
votes
3answers
2k views

Using ICSharpCode.AvalonEdit on .Net 3.5?

I'm trying to use the ICSharpCode.AvalonEdit.TextEditor control from the SharpDevelop 4.0 project in a WPF app that I'm building, but I can't seem to get it to work. I checked out a copy of the ...
1
vote
3answers
56 views

How to compile a .NET assembly against Silverlight?

I am trying to compile AvalonEdit for Silverlight, but I am not sure how to do it as I never worked with Silverlight, only WPF. I tried to add this control to my Silverlight application but Visual ...
1
vote
3answers
44 views

AvalonEdit: Regex Capturing Groups in XSHD-File

i´m trying to realize a Syntax-Highlighting for a Heredoc-similar Syntax. therefore i have to capture the starting-name. but i failed (trying it in a Rule and a Span). This is my Regex: ...
1
vote
1answer
36 views

How to Suspend the Undostack of Avalonedit?

I perform a massive text-change on the editor i can not (or very difficult) determine when the changes begin end (the textchange is released by scrolling) i dont want to be able to undo the changes ...
1
vote
1answer
146 views

Getting text from AvalonEdit with UIAutomation

I'm doing some work with UIAutomation and need to get the content of an AvalonEdit control in WPF. I am only able to get hold of the AvalonEdit control as a ControlType of Text: var editors = ...
1
vote
1answer
182 views

How to use AvalonEdit in Microsoft Surface application?

I'm using AvalonEdit in a Microsoft Surface application. It's working great, but I have one problem with folding. There are this small + icons to enable folding. But I don't know how I can register ...
1
vote
1answer
192 views

How to enable Virtual Space in AvalonEdit?

I want to achieve "Virtual Space" functionality, similar to one in Visual Studio, in AvalonEdit. I.e. the caret could be positioned beyond the end of the text line, and if you press any key, there ...
1
vote
2answers
267 views

Escaping the XML Angle Bracket within a Regex

I've been using the ICSharp TextEditor control, and this uses an XML file to work out the different syntax highlighting sections (strings, comments etc.) with the C# regex engine. So I've been using ...
1
vote
1answer
233 views

AvalonEdit - Ruleset Spans

How to check if a word at a position is in a Span[i] of the xshd-ruleset? Thanks!
1
vote
2answers
625 views

WPF Debugging AvalonEdit binding to Document property

all day long I am sitting and trying to find out why binding to AvalonEdits Document property isn't working. AvalonEdit is an advanced WPF text editor - part of the SharpDevelop project.(it's going to ...
0
votes
0answers
33 views

AvalonEdit: Cascading HighlightingColorizers

i want to cascade the SyntaxHighlighting Engine of AvalonEdit. I have 2 HighlightingDefinitions. The first one is the main syntax. The second one is a complex multiline-preprocessor-markup-language. ...
0
votes
1answer
24 views

Intellisense with AvalonEdit

I have not found any good example or article about this, there is some code in this example, but its very basic and not usable for a real situation... ...
0
votes
1answer
49 views

SharpDevelop XSHD file for Ruby syntax?

Has anyone written an AvalonEdit XSHD file for Ruby syntax? I'm in need of one for my project and I want to make sure I'm not re-inventing the wheel. Thanks
0
votes
1answer
94 views

Find multiple strings in avalon Editor

I'm using avalon Edit. I need to find and highlight multiple strings in the editor. Any idea to achieve that. I know how to find single string but I need to find multiple strings and highlight all of ...
0
votes
0answers
82 views

Determining where to wrap a line by semicolon

Is there a built-in way to make AvalonEdit wrap text only at the semicolon at the end of the line? or after some // type comments? I have a formula language that is a lot like C# in syntax. It may or ...
0
votes
2answers
97 views

AvalonEdit not updating if not visible

I have implemented AvalonEdit in my application. Everything works fine except one little hitch - if I change the contents of the editor manually via the Text property while the editor is not visible ...
0
votes
2answers
917 views

AvalonEdit WPF TextEditor (SharpDevelop): How to highlight a specific range of text?

The incredibly awesome AvalonEdit WPF TextEditor control seems to lack an important feature, or at least i can't figure it out. Given an offset and a length, highlight that portion in the TextDocument ...
0
votes
1answer
110 views

Application hangs when calling external constructor — troubleshooting steps?

This may be a long shot but I'm out of ideas. I've got a VS C# solution with three projects in it. There's a class library project and then two application projects that depend on that class library. ...
0
votes
1answer
252 views

WPF AvalonEdit SQL xhsd request

I've looked on the internet (over and over) and I couldn't find an SQL.vshd file for AvalonEdit, I've used the old format version but it makes the editor bug (it doesn't show anymore at all), So I'm ...
0
votes
1answer
244 views

AvalonEdit - Visible Text

I try to get the visible text of the avalonedit control, but the VisualLines[] only handles wordwrap with TextLines[] and I dont know how to check if a TextLine is in the visible area or not. The ...