Completed
Last Updated: 15 Mar 2022 14:30 by Desislava
Release R1 2022

1. Target Framework .NET6 and VS 2022 17.0.1:

2. Install UI.for.WinForms.AllControls.Net60 version 2021.3.1123:

3. Double click the form to open the designer:

4. First try dragging a RadGridView from the toolbox:

5. Install the Nuget package for the toast notification:

6. Install Microsoft.Toolkit.Uwp.Notifications version 7.0.0:

Please make sure that the C:\Program Files (x86)\Progress\ToolboxNuGetPackages folder doesn't contain anything and it is empty. If there is any version available there, please delete it. 

7. Now, try opening the designer. It never loads:

 

 

Declined
Last Updated: 20 Nov 2021 06:26 by ebrahim
Created by: ebrahim
Comments: 2
Category: UI for WinForms
Type: Bug Report
0

Hi, when I select a date in the calendar and want to display it in a box, it also displays the base date each time I select a date.

First select the correct date but by selecting the same date show RangMinDate

my code is

private void radCalendar1_SelectionChanged(object sender, EventArgs e)
        {



            label1.Text = radCalendar1.SelectedDate.ToString();

        }

 

 

                        
Completed
Last Updated: 29 Apr 2022 13:05 by ADMIN
Release R2 2022
Created by: John
Comments: 1
Category: UI for WinForms
Type: Feature Request
1
Currently it is not possible to select the items added to RadCommandBar, RadRibbonBar or RadMenu.
Unplanned
Last Updated: 10 Nov 2021 14:41 by ADMIN
Created by: n/a
Comments: 0
Category: UI for WinForms
Type: Bug Report
1

The writing-mode attribute is ignored when rendering RadSvgImage. 
Here is a sample SVG:

<svg width="200" height="200" viewBox="0 0 200 200" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
    <text style="font-size:20px;writing-mode:tb;" x="30" y="30">
        Vertical text
    </text>
    <text style="font-size:20px;writing-mode:vertical-lr;" x="50" y="50">
        Text 2
    </text>
</g>
</svg>
RadSvgImage renders horizontal text:


The Edge browser renders it correctly:
image

 

 

Completed
Last Updated: 29 Nov 2021 11:16 by ADMIN
Release R1 2022
Created by: Al
Comments: 1
Category: UI for WinForms
Type: Feature Request
1
Request read only property on the RadMultiColumnComboBox control
Completed
Last Updated: 04 Jan 2022 13:32 by ADMIN
Release R1 2022

To reproduce:

- .NET Core version: 3.1

- Visual Studio 2022: Version 17.0.0 Preview 7.0

 - Telerik UI for WinForms version: 2021.3.1019-hotfix

1. Create a new Excel-Inspared template project.

2. Select the Review tab and the Properties section try to open the Items collection.

The attached Error.gif illustrates the steps.

Workaround: use the Smart tag (see SmartTag.gif)

Unplanned
Last Updated: 21 Oct 2021 06:39 by ADMIN
Created by: Dave
Comments: 4
Category: UI for WinForms
Type: Feature Request
0
This aggregate function should count all the distinct values.
Completed
Last Updated: 19 Oct 2021 15:41 by ADMIN
Release R3 2021 SP1
1. Create a new windows forms .net 5.0 project

2. Add a richtexteditor control to the form

3. Set IsSpellCheckingEnabled = true

4. Run the project, type invalid word in text box.  The text is not spell-checked.
Completed
Last Updated: 20 Oct 2021 10:32 by ADMIN
Release R3 2021 SP1
To reproduce:
Add several RadTreeNodes to RadTreeView and then call the Clear method of the control.
Completed
Last Updated: 29 Apr 2022 12:45 by ADMIN
Release R2 2022
Completed
Last Updated: 09 Nov 2021 09:01 by ADMIN
Release R3 2021 SP1

The snap layouts window can be opened by using the Win+Z keyboard combination, but when the mouse is over the Maximize button of RadForm, the window is not shown.
MSDN information is available here: https://docs.microsoft.com/en-us/windows/apps/desktop/modernize/apply-snap-layout-menu

Following the guides from MSDN, we need to override the WndProc method of the form, listen to the WM_NCHITTEST message, and return HTMAXBUTTON result when the mouse is over the maximize button.


private const int HTMAXBUTTON = 9;
protected override void WndProc(ref Message m)
{
    if (m.Msg == NativeMethods.WM_NCHITTEST)
    {
        // Get the hit test location from message parameters
        Point location = this.ParseIntPtr(m.LParam);
        location = this.GetMappedWindowPoint(location);

        // Get the hit tested element and check if it is the Maximize button
        RadElement element = this.ElementTree.GetElementAtPoint(location);
        if (element == this.FormElement.TitleBar.MaximizeButton)
        {
            m.Result = new IntPtr(HTMAXBUTTON);
            return;
        }
    }

    base.WndProc(ref m);
}

private Point ParseIntPtr(IntPtr param)
{
    if (IntPtr.Size == 4) //x86
    {
        return new Point(param.ToInt32());
    }
    else //x64
    {
        long intParam = param.ToInt64();
        short x = (short)intParam;
        short y = (short)(intParam >> 16);
        return new Point(x, y);
    }
}

protected virtual Point GetMappedWindowPoint(Point screenPoint)
{
    NativeMethods.POINT inputPoint = new NativeMethods.POINT();
    inputPoint.x = screenPoint.X;
    inputPoint.y = screenPoint.Y;

    if (this.IsHandleCreated)
    {
        NativeMethods.MapWindowPoints(new HandleRef(this, IntPtr.Zero), new HandleRef(this, this.Handle), inputPoint, 1);
    }

    return new Point(
    inputPoint.x + this.FormBehavior.ClientMargin.Left,
    inputPoint.y + this.FormBehavior.ClientMargin.Top);
}

              
Completed
Last Updated: 04 Nov 2021 11:50 by ADMIN
Release R3 2021 SP1
 The WorkbookContentChanged event is invoked right after importing a document. 
Completed
Last Updated: 02 Nov 2021 16:20 by ADMIN
Release R3 2021 SP1
Created by: Igo
Comments: 0
Category: UI for WinForms
Type: Bug Report
0

1. Run Telerik Theme Viewer app

2. Set Office2019Dark theme

3. Navigate to "Item Containers" tab

You will see that radTreeView does not display nodes.

 

Workaround:

this.radTreeView1.FullRowSelect = false;

Completed
Last Updated: 23 Sep 2022 13:07 by ADMIN
Release R3 2022

1. Set ThemeResolutionService.AllowAnimations = false;

2. Run the attached project and set a filter via the GridFilterButton popup

3. Click "Clear filter" option in the GridFilterButton popup

 

You will see that the GirdFilterButton visual indication is of an applied filter. However, there is no applied filter.

Completed
Last Updated: 20 Oct 2021 09:37 by ADMIN
Release R3 2021 SP1
Documents with very small container bounds may fail to load.
Completed
Last Updated: 08 Oct 2021 13:12 by ADMIN
Release R3 2021 SP1
  1. Run TelerikExamplesLauncher.exe - GanttView "First Look" example
  2. Scroll and select a task near the bottom, for example: "Send your engagement announcement to newspapers" under "The Guest > 6 Months +"
  3. Use splitter to resize between TextView and GraphicalView

You will see that GraphicalView doesn't move but TextView loses task position and scrolls to the top.

Note that using mouse Scroll refreshes the correct position of TextView on the selected task.

Duplicated
Last Updated: 06 Oct 2021 14:33 by ADMIN
Created by: Fernando
Comments: 0
Category: UI for WinForms
Type: Feature Request
0
The SplitPanels should expose the Modifiers property so that it can be set to Public or Protected. This way it will be possible to work with the panels in forms that are visually inherited in the VS designer.
Completed
Last Updated: 18 Oct 2021 09:56 by ADMIN
Release R3 2021 SP1 (LIB 2021.3.1019)
Created by: Paul
Comments: 2
Category: UI for WinForms
Type: Bug Report
2
On some (but not all!) systems (including my development laptop) an application using RadOpenFileDialog completely hangs (freezes) when e.g. selecting another directory in the RadOpenFileDialog.
Completed
Last Updated: 21 Oct 2021 10:28 by ADMIN
Release R3 2021 SP1
Created by: Frank
Comments: 0
Category: UI for WinForms
Type: Bug Report
0
'Parameter is not valid.' exception is thrown, when loading a file dialog. The exception is thrown, when trying to retrieve icons for the files and folders in the dialog.
Completed
Last Updated: 24 Sep 2021 09:02 by ADMIN
Release R3 2021 SP1
Created by: Jana
Comments: 0
Category: UI for WinForms
Type: Bug Report
2

When we have start position set to center screen:

            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;

RadForm does not calculate the correct location of the form on HDPI devices.