Unplanned
Last Updated: 17 Mar 2020 13:38 by ADMIN
When copy a modified Heading from Word document and paste it into a not empty RadRichTextEditor the modified styles are not correctly imported.
Unplanned
Last Updated: 17 Mar 2020 06:50 by ADMIN

Please refer to the attached gif file for a better illustration of the steps how o reproduce the undesired behavior.

Workaround: use RadForm

Completed
Last Updated: 23 Apr 2020 16:11 by ADMIN
Release R2 2020 (LIB 2020.1.423)

Please follow the steps:

1. Create a brand new project with a ShapedForm

2. Set the BackColor property to Red and save the form.

3. Open the ThemeName drop down and close it. You will notice that the BackColor is lost since the ThemeName is serialized as empty string in the designer file.

Workaround: delete the serialized ThemeName property with empty value.

Completed
Last Updated: 19 Mar 2020 14:40 by ADMIN
Release R2 2020 (LIB 2020.1.323)

Run the attached project and see the .GIF file or follow the steps below:

1. Set AssociatedKeyboardType to a control and KeyboardLayoutType to Numpad;

2. Run the application and drag the whole form to the Right edge of the screen

3. Click inside the control in order to display the RadVirtualKeyboardForm 

You will see that the VirtualKeyboardForm is not displayed under the associated control.

 

Workaround:

After setting the KeyboardLayoutType to Numpad, set the KeyboardForm.Size manually:

this.radVirtualKeyboardForm1.KeyboardForm.Size = this.radVirtualKeyboardForm1.KeyboardForm.VirtualKeyboard.CalculateDesiredSize().ToSize();

Unplanned
Last Updated: 05 Mar 2020 10:03 by ADMIN
Created by: Gilles
Comments: 0
Category: UI for WinForms
Type: Bug Report
0

How to reproduce:

private void RadForm1_Load(object sender, EventArgs e)
{
    this.radWebCam1.TakeSnapshot();
}

Workaround:

public class CustomWebCam : RadWebCam
{
    public override void TakeSnapshot()
    {
        FieldInfo fi = typeof(RadWebCam).GetField("player", BindingFlags.NonPublic | BindingFlags.Instance);
        object value = fi.GetValue(this);

        if (value == null)
        {
            return;
        }

        PropertyInfo propertyInfo = value.GetType().GetProperty("EvrVideoDisplay", BindingFlags.NonPublic | BindingFlags.Instance);
        value = propertyInfo.GetValue(value, null);

        if (value == null)
        {
            return;
        }

        base.TakeSnapshot();
    }
}

Declined
Last Updated: 16 Feb 2024 20:28 by ADMIN
The filter UI controls in ASP.NET Core and MVC are really nice, see filter. Can you include the same controls and UI be included in Winforms and WPF?
Completed
Last Updated: 20 Jun 2023 04:56 by Jay
Release R2 2020 (LIB 2020.1.323)

Paste some text inside RadRichTextEditor. If the text has more rows than the currently visible area you will see that the control does not scroll down to the caret position.

Workaround:

private void RadRichTextEditor1_CommandExecuted(object sender, CommandExecutedEventArgs e)
{
    if (e.Command is PasteCommand)
    {             
        Application.DoEvents();

        bool cursorAtDocEnd = this.radRichTextEditor1.Document.CaretPosition.IsPositionAtDocumentEnd;
        if (cursorAtDocEnd)
        {
            MoveCaretCommand command = new MoveCaretCommand(this.radRichTextEditor1.RichTextBoxElement);
            command.Execute(MoveCaretDirections.Down);
        }
    }
}

 

Unplanned
Last Updated: 27 Feb 2020 08:56 by ADMIN
Created by: Micronova
Comments: 0
Category: UI for WinForms
Type: Feature Request
0

Currently, RadFileDialogs uses a RadAutoCompleteBox for specifying the folder/file name. It would be nice to have a drop down with recent files:

Unplanned
Last Updated: 26 Feb 2020 10:41 by ADMIN
When RadOpenFileDialog is opened, open an Explorer window , select a file, copy it and paste in the folder displayed from the RadOpenFileDialog. If the same operation is performed using a standard WinForms OpenFile dialog the pasted file is selected after the paste operation.
Completed
Last Updated: 23 Apr 2020 16:12 by ADMIN
Release R2 2020 (LIB 2020.1.423)

Populate a RadGridView with data, move the form to a monitor with greater than 100% DPI scaling. Save the layout and then load it again. You will notice that the columns' width is increased each time.

Workaround:

    Sub New()
        RadControl.EnableDpiScaling = False
        InitializeComponent()
    End Sub
Unplanned
Last Updated: 20 Feb 2020 12:29 by ADMIN
Created by: Dan
Comments: 0
Category: UI for WinForms
Type: Feature Request
5
Introduce a Converter tool standalone application which does not depend on a specific Visual Studio version.
Completed
Last Updated: 10 Jun 2020 13:40 by ADMIN
Release R2 2020 SP1
Created by: Frank
Comments: 0
Category: UI for WinForms
Type: Feature Request
0

Default:

Desired:

Workaround: handle the ExplorerControl.MainNavigationTreeView.NodeFormatting event and replace the node's text with the FileBrowserTreeNode.Label: 

    Sub New()

        InitializeComponent() 

        AddHandler Me.RadOpenFileDialog1.OpenFileDialogForm.ExplorerControl.MainNavigationTreeView.NodeFormatting, AddressOf MainNavigationTreeView_NodeFormatting
        Me.RadOpenFileDialog1.ShowDialog() 
    End Sub

    Private Sub MainNavigationTreeView_NodeFormatting(sender As Object, e As Telerik.WinControls.UI.TreeNodeFormattingEventArgs)
        If e.Node.Text = "K:" Then
            Dim f As FileBrowserTreeNode = TryCast(e.Node, FileBrowserTreeNode)
            If f IsNot Nothing Then
                e.Node.Text = f.DataItem.Label
            End If 
        End If 
    End Sub
Completed
Last Updated: 09 Mar 2020 14:56 by ADMIN
Release R2 2020 (LIB 2020.1.316)
Unplanned
Last Updated: 17 Feb 2020 08:32 by ADMIN
Import hover style for a link in HTML:

a:hover {
            color: #3ca9f6
}
Completed
Last Updated: 09 Mar 2020 14:30 by ADMIN
Release R2 2020 (LIB 2020.1.316)

 public RadForm1() 
        {
            RadMapElement.VisualElementFactory = new MyMapVisualElementFactory();
            InitializeComponent();
        } 

 

public class MyMapVisualElementFactory : MapVisualElementFactory
    {
        public override MapCluster CreateCluster()
        {
            System.Diagnostics.Debug.WriteLine("FIRE!");
            return new MapCluster();
        }
    }
Completed
Last Updated: 09 Mar 2020 14:29 by ADMIN
Release R2 2020 (LIB 2020.1.316)

Please refer to the attached sample project and follow the steps illustrated in the provided gif file.

Workaround:

        public RadForm1()
        {
            InitializeComponent();

            this.radPageView1.SelectedPageChanged += radPageView1_SelectedPageChanged;
        }

        private void radPageView1_SelectedPageChanged(object sender, EventArgs e)
        {
            if (this.radPageView1.SelectedPage != this.radPageViewPage1)
            {
                SelectionMiniToolBar selectionMiniToolBar = this.radRichTextEditor1.RichTextBoxElement.SelectionMiniToolBar as SelectionMiniToolBar;
                if (selectionMiniToolBar != null)
                {
                    selectionMiniToolBar.Hide();
                }
            }
        }

Unplanned
Last Updated: 17 Feb 2020 13:52 by ADMIN
When a developer set the RadForm.ThemeName property and then drag any controls onto the form, they will get automatically this theme applied to the control's ThemeName property. However, if you already have some controls on the form with ThemeName = "X" and you change RadForm.ThemeName to "Y", all controls' ThemeName should be changed to the new RadForm.ThemeName as well.
Completed
Last Updated: 11 May 2021 11:13 by ADMIN
Release R2 2021
Created by: atfats
Comments: 3
Category: UI for WinForms
Type: Feature Request
9

hi...

A Callout Control is in your roadmap for winforms please ?

thx in advance...

 

regards,

Unplanned
Last Updated: 06 Feb 2020 14:01 by ADMIN
Please open the sample document in the Demo application and start scrolling. The attached gif file illustrates the obtained behavior. It is necessary to wait 2-3 seconds to scroll to the correct document's position.
Unplanned
Last Updated: 06 Feb 2020 13:20 by ADMIN
OverflowException is thrown while importing document using Helvetica font with custom encoding.