Completed
Last Updated: 18 May 2020 12:08 by ADMIN
Release LIB 2020.2.518 (05/18/2020)
Keyboard focus is lost on CompletionListWindow when setting runtime new collection to the CompletionListItems property. The values inside CompletionListWindow can't be selected through the keyboard arrow keys.
Completed
Last Updated: 14 May 2020 15:18 by ADMIN
Release LIB 2020.2.518 (18.05.2020)

When the control is inside ScrollViewer and you click it, focus is lost and caret disappears. Some controls have built in ScrollViewer , for example LayoutControl so placing the editor in LayoutControl also leads to the same issue.

Generally placing the syntaxeditor in scrollviewer is risky for the vertical virtualization so at least a height should be set to the control. In R2 2020 SP, an exception will be thrown if Syntax Editor with no height is added in scroll viewer or stack panel or other panel which measures vertically with infinity.

Workaround for this issue:

        private void syntaxEditor_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
        {
            e.Handled = true;
        }
Completed
Last Updated: 30 Apr 2020 06:46 by ADMIN
Release R2 2020
Currently the strings are not colored in C#, VB, JS documents working with CSharpTagger, JavaScriptTagger, VisualBasicTagger. Make the strings colored out of the box.
Completed
Last Updated: 29 Apr 2020 09:21 by ADMIN
Release 2020.1.427

SyntaxEditor is in RadListBoxItem.

Entering space key does not produce text change and gets the focus lost our of the editor.

Workaround:

    private void RadSyntaxEditor_PreviewKeyDown(object sender, KeyEventArgs e)
        {
            if (e.Key == Key.Space)
            {
                (sender as RadSyntaxEditor).Insert(" ");
                e.Handled = true;
            }
        }
Completed
Last Updated: 20 Apr 2020 10:11 by ADMIN
Release LIB 2020.1.420 (04/20/2020)

SyntaxEditor showing XML/Html/XAML File and XMlFoldingTagger is registered.

Deleting the last bracket symbol ">" results in exception in XMLFoldingTagger.cs

Completed
Last Updated: 10 Apr 2020 05:08 by ADMIN
Release LIB 2020.1.413 (04/13/2020)
If secondary wpf window is opened in an application, the enter key does not work in SyntaxEditor. It does not produce new line as expected.
Completed
Last Updated: 27 Feb 2020 12:49 by ADMIN
Release LIB 2020.1.302
Created by: Olivier
Comments: 1
Category: SyntaxEditor
Type: Bug Report
3

Hello,

When we resize the syntaxEditor control, the folding buttons moved. You can reproduce this isssue in your demos.

 

  1. Reduce the contents of the sample
  2. Increase the size of sample window and see the buttons are not besides the line

 

Best regards,

Unplanned
Last Updated: 13 Feb 2020 14:00 by ADMIN
Created by: Troy
Comments: 1
Category: SyntaxEditor
Type: Feature Request
2

I do have some feedback on this component. I love it, but of course there are some areas where improvement can be made. For instance, in the screenshot below, I have highlighted some words where improvement can be made.

  1. ‘1,2,3,5’ – Literals in SSMS are Red
  2. ‘ER – 100% OF MEDICARE’ – OF is highlighted in Blue. It is contained in a literal and shouldn’t be highlighted
  3. ISNULL – Is a function and should be highlighted in Blue
---- - It looks like that the tagger is only looking for 2 – only. If there are more than 2 in sequence, it doesn’t identify it as a comment and should
Unplanned
Last Updated: 28 Jan 2020 12:27 by ADMIN
We could create intellisense similar to Visual Studio.
Completed
Last Updated: 22 Jan 2020 12:34 by ADMIN
Release LIB 2020.1.127 (01/27/2020)
'Cannot find resource named 'DragVisualStyle' error occurs in in the error list when using implicit styles.
Completed
Last Updated: 27 Nov 2019 14:30 by ADMIN
Release R1 2020
Add separate folding tagger class for creating folding (collapsible) regions in XML, XAML, HTML code files.
Completed
Last Updated: 25 Nov 2019 15:04 by ADMIN
Release LIB 2019.3.1202

If you have an XML attribute with a string value, but the value is not fully rendered into the viewport, its color defaults to black, instead of the expected blue color.

To work this around, you can create a custom XmlTagger and override its GetTags() method. This will allow you to properly catch the string value and return it as a tag span element with its ClassificationType set to "string".

Unplanned
Last Updated: 22 Nov 2019 08:49 by ADMIN
Add support for using right-to-left characters. This includes.
    - typing from right to left
    - proper selection, navigation between RTL chars
    - proper insert, delete, cut, copy, paste operations (modifications) sign
Unplanned
Last Updated: 04 Nov 2019 10:32 by ADMIN
Created by: Mischa Müller
Comments: 1
Category: SyntaxEditor
Type: Feature Request
5
Python is one of the most important scripting languages. It would be nice if this language was supported by default.
Completed
Last Updated: 17 Oct 2019 08:29 by ADMIN
Release R3 2019 SP1
Folding tagger does not work for other languages than C#.
It should be renamed to CSharpFoldingTagger.
FoldingTagger should be base , extensible class with options to set collections of opening symbols (brackets) or words (for startinga  method / class, region) and closing symbols / words.

Unplanned
Last Updated: 07 Oct 2019 11:37 by ADMIN
Created by: Olivier
Comments: 1
Category: SyntaxEditor
Type: Feature Request
6

Hello,

We would like to use SyntaxEditor by providing our own programming language definition. It would be great to have the ability to feed SyntaxEditor with a language definition file. This file could be use an EBNF-like format to provide syntax coloration.

Thanks & regards,

Unplanned
Last Updated: 24 Sep 2019 11:27 by ADMIN
Created by: Petar
Comments: 0
Category: SyntaxEditor
Type: Feature Request
9
Add API for inserting code snippets like in Visual Studio.
1 2 3