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

learn more… | top users | synonyms

0
votes
0answers
16 views

Hide text of some lines of AvalonEdit.TextEditor

everyone! How can i make text of some lines of AvalonEdit.TextEditor as invisible? Thanks.
0
votes
1answer
13 views

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 ...
1
vote
2answers
62 views

AvalonEdit Change Syntax Highlighting in Code

I want to change the Syntax Hightlighting of AvalalonEdit in my Code. XAML: <avalonEdit:TextEditor Name="textEditor" SyntaxHighlighting="{Binding syntaxHighlighting}" /> C#: public string ...
0
votes
0answers
11 views

AvalonEdit EditCommand

I want only one EditCommand binding in textbox the backspace command. How can I add this? Before that I delete all binding. ICollection<CommandBinding> editCommandBindings = ...
0
votes
1answer
24 views

How to get the current vertical scroll bar position with Avalon TextEdtior

External Resourse: http://www.codeproject.com/Articles/42490/Using-AvalonEdit-WPF-Text-Editor I am using the editor for showing a log file and would like it to always scroll to the button when a ...
2
votes
1answer
308 views

Hooking-up commands in AvalonEdit for ListView ItemTemplate doesn't work

I have used Avalonedit control in my project. When I use shortcut keys like ctrl+C or ctrl+V, associated copy/paste commands works fine. I decided to use these commands in context menu for more ...
3
votes
1answer
204 views

Two-way binding in AvalonEdit doesn't work

I have used AvalonEdit in my project that is based on WPF and MVVM. After reading this post I created this class: public class MvvmTextEditor : TextEditor, INotifyPropertyChanged { public static ...
0
votes
2answers
154 views

How to load large text files in AvalonEdit control inside custom WPF C# project

We are developing a .Net 4.0 C# WPF Line-of-business app and need to show (readonly) large text files to the user. TextBlock as stated in SO is not an option and tried the suggested AvalonEdit ...
0
votes
0answers
77 views

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 ...
0
votes
1answer
67 views

Making (and keeping) lines readonly in AvalonEdit

What is a robust way of making certain lines readonly in an AvalonEdit control? Users are allowed to change certain method bodies in a C# or VB template file but nothing else. The readonly state per ...
1
vote
1answer
262 views

How can I reset ICSharpCode.AvalonEdit syntax highlighting?

I am hosting the ICSharpCode AvalonEdit source-code editing WPF control into my Windows Forms C# application. I know that the following code loads a syntax highlighting definition: ...
1
vote
0answers
286 views

Need a rather unique WPF text editor control

I'm trying to write a special-purpose text editor program in WPF (C# VS 2010 .NET 4.0). The documents this program will be used to create are of a very specific format, and I'll need fairly precise ...
3
votes
2answers
277 views

How can I add this WPF control into my WinForm?

I know that I must use an ElementHost to display a WPF control in a WinForm, but as the WPF control is third party software and it only comes with an XML file and a DLL file. The control is ...
0
votes
0answers
66 views

Auto indention in AvalonEdit

I don't see any documentation about how setting the Auto Indention to true in XAML. I'm sure it is possible somehow. How can I do that, please?
0
votes
1answer
159 views

AvalonEdit: Determine if you are in a Comment

For AvalonEdit I have defined "Comments" in the xshd-File. Now, in my program, I would like to determine whether a given offset lies inside or outside of a comment. I did find some code on the net, ...
1
vote
1answer
268 views

Does AvalonEdit :TextEditor has quick search/replace functionality?

I use AvalonEdit:TextEditor. Can i enable quick search dialog (on Ctrl-F for example) for this control? Or maybe someone has code for search words into AvalonEdit:TextEditor text?
1
vote
1answer
356 views

How to Set Syntax Highlighting in AvalonEdit?

I'm trying to set the Syntax Highlighting in my program I'm making that uses AvalonEdit This is the code that I'm using: StreamResourceInfo sri = Application.GetResourceStream(new Uri("lua.xshd")); ...
0
votes
0answers
127 views

AvalonEdit: adding a syntax highlighting rule on top of the standard C# ruleset

I want to add a a syntax highlighting rule in my AvalonEdit editor without having to replace the existing C# ruleset. Example: I want to make comments' background a very light green, without removing ...
1
vote
1answer
108 views

VisualLineElementGenerator in AvalonEdit to skip tabs?

I am writing a text editor using Avalon Edit. I would like to replace tabs inserted within the text to be unselectable. For example, let's say I have the following line: (tab)(tab)(tab)"Hi there!" ...
4
votes
2answers
1k views

Making AvalonEdit MVVM compatible

I'm trying to make Avalon MVVM compatible in my WPF application. From googling, I found out that AvalonEdit is not MVVM friendly and I need to export the state of AvalonEdit by making a class derived ...
1
vote
1answer
119 views

Changing default line height in avalon edit

I am writing a custom software using avalon edit and I am looking for a way to make the space (height) between lines bigger. At the moment I am forced to add an empty line every time the user has ...
3
votes
1answer
175 views

Avalonedit How to invalidate Line Transformers

I've added a LineTransformerClass that is derived from DocumentColorizingTransformer to the TextEditor: TxtEditCodeViewer.TextArea.TextView.LineTransformers.Add(new ColorizeAvalonEdit()); Is there ...
0
votes
0answers
88 views

AvalonEdit - Searching Completion Data [more]

I solved my first problem AvalonEdit - Searching Completion Data Offsetting the StartOffSet from the '-' made the Completion Window work. In this screenshot, line 1 works fine. The completion window ...
3
votes
3answers
722 views

Avalonedit how to programmatically change background of a text

I want to implement something that programmatically changes the background of the text when provided with a documentline.(Something that looks very similar to a block selection of a text. I'm going to ...
0
votes
1answer
151 views

Avalonedit how to get the top visible line

In Avalonedit, how do I get the line number of the very top line that is visible to the user? I believe I'm supposed to make some use out of VisualLines but it isn't helping.
1
vote
2answers
436 views

Adding syntax highlighting rules to AvalonEdit programmatically

I'm using AvalonEdit in an app that runs my own custom-built language. I want to put in appropriate syntax highlighting into Avalon Edit. Normally this is done by defining the highlighting rules in an ...
0
votes
1answer
207 views

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 ...
0
votes
1answer
117 views

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 ...
1
vote
1answer
165 views

Coloring a margin on Avalonedit

I have added a margin (For adding breakpoints) to the left side of my TextEditor in the following manner: public partial class LogicSimViewCodeWPFCtrl : UserControl { private class ...
2
votes
1answer
348 views

Uppercasing in AvalonEdit

I am writing a movie script editor using AvalonEdit. I extended the DocumentLine class to have a "Type" property, with the value representing either a "Character", "Dialog Line", etc. I would like ...
0
votes
1answer
429 views

AvalonEdit (C#) Custom attributes in XSHD files

I'm working on highlighting a small scripting language (that is not a derivative of any of the built in's) and I had a custom XML file setup for different syntax keywords and such. I would really ...
1
vote
2answers
396 views

How can I use AvalonEdit to edit XML files

I would like to include an XML editor in my app - similar to VS's XML editor with auto-coloring, etc. AvalonEdit sounds like a great solution. However, AvalonEdit comes with a sample for C# syntax, ...
0
votes
1answer
196 views

Preventing Text From Updating In AvalonEdit

I know you can disable input altogether if you handle the PreviewKeyDown event of the editor and then set the e.Handled of the KeyEventArgs to true. However, I'm trying to figure out how to prevent ...
0
votes
1answer
610 views

Showing Invalid XML Syntax with AvalonEdit

I am trying to use AvalonEdit as a XML text editor in my WPF application. However, it doesn't do any formatting (such as wavy lines) when it encounters invalid syntax. I will like to know if such ...
0
votes
1answer
245 views

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?
0
votes
1answer
54 views

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?
1
vote
1answer
192 views

AvalonEdit: Highlight the text in between Beginning and End elements

I'm using AvalonEdit and have a custom highlight rules file, I've got this this rule... <Span ruleSet="ASP" multiline="true"> <Begin ...
1
vote
2answers
183 views

AcceptsReturn=“False” for AvalonEdit

I need a single-line AvalonEdit control (equivalent to TextBox with AcceptsReturn="False"). AvalonEdit does not seem to have this property. How do I do this for AvalonEdit?
4
votes
1answer
321 views

How to add a DocumentColorizingTransformer to AvalonEdit

I've implemented my own DocumentColorizingTransformer. But now, how do I add it to the AvalonEdit?
1
vote
0answers
189 views

AvalonEdit TextEdit Not Scrolling when used in a usercontrol inside Itemscontrol

I am using Avalon Edit control inside an itemscontrol. The scrollviewer is not scrolling when the cursor position changes. here is the code UserControl1.xaml <UserControl ...
4
votes
1answer
859 views

Highlight all occurrences of selected word in AvalonEdit

I need to highlight all occurrences of selected word in AvalonEdit. I created an instance of HihglinghtingRule class: var rule = new HighlightingRule() { Regex = regex, //some regex for ...
65
votes
1answer
2k 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. ...
1
vote
1answer
741 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... ...
1
vote
3answers
224 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 ...
8
votes
1answer
3k 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. ...
1
vote
3answers
203 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: ...
6
votes
1answer
516 views

AvalonEdit highlight matching characters

Is there an easy way using Avalon edit to highlight matching brackets and other characters like {}""?
2
votes
1answer
543 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
415 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: ...
0
votes
1answer
236 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

1 2