Completed
Last Updated: 13 Aug 2026 09:34 by ADMIN
Release 2026.3.812 (2026 Q3)
Created by: Robert
Comments: 1
Category: AIPrompt
Type: Feature Request
1
Add a LocalizationProvider for the strings used in the control. 
Completed
Last Updated: 13 Aug 2026 09:34 by ADMIN
Release 2026.3.812 (2026 Q3)
Completed
Last Updated: 13 Aug 2026 09:33 by ADMIN
Release 2026.3.812 (2026 Q3)
Created by: Martin Ivanov
Comments: 0
Category: UI for WinForms
Type: Bug Report
0

Loading the Examples project fails with missing imported TelerikLicensingVersion.targets file.

Completed
Last Updated: 13 Aug 2026 09:33 by ADMIN
Release 2026.3.812 (2026 Q3)
Created by: Robert
Comments: 1
Category: UI for WinForms
Type: Bug Report
1

In this particular scenario, we have 2 monitors. One with 100 % and one with 150% DPI. When the ScreenTip is shown in 100%, its size is correct. Then if we move the Form to the second monitor that is 150%, the screenTip size is not scaled when shown for the first time. We need to move the mouse to hide and show it again. The second time, the size is correct.

Completed
Last Updated: 13 Aug 2026 09:33 by ADMIN
Release 2026.3.812 (2026 Q3)
When we set a checkbox with the CheckState to Indeterminate, then it's serialized by the designer is that order (because VS serialized in alphabetical order).
But next time we open the form, it's unchecked, because setting to Indeterminate before setting IsThreeState to true is ignored.
Completed
Last Updated: 13 Aug 2026 09:16 by ADMIN
Release 2026 Q3

The arrow button click does not work as expected in the latest release version. This is a regression in our latest 2026.2.702 release, where the AllowedClickButtons property is not initialized correctly. We are working on a fix! Please subscribe to this item, and you will receive an email notification when we introduce the fix.

In the meantime, you can apply the following workaround:

this.radDropDownList1.DropDownListElement.ArrowButton.AllowedClickButtons = MouseButtons.Left;

Or use v.2026.2.520, where the arrow button functions as usual.

We appreciate your patience and apologize for the inconvenience this issue may have caused. 

Completed
Last Updated: 16 Jul 2026 11:34 by ADMIN
Release 2026.2.520 (2026 Q2)

Clients with perpetual license may observe the following warning when using UI.for.WinForms.AllControls.Net90 (v.2026.1.415): 

Telerik and Kendo UI Licensing warning TKL403: Services associated with Telerik Document Processing Libraries version 2026.1.402.80 require a subscription or trial license. Please obtain a subscription license at https://prgress.co/3PwQMKZ

Telerik and Kendo UI Licensing warning TKL004: Unable to locate licenses for all products.

Completed
Last Updated: 02 Jul 2026 11:17 by ADMIN
Release 2026.2.702

When an appointment has a very short duration (seconds-level, e.g., 1 second and 0 minutes), it does not appear in the RadPrintPreviewDialog. The appointment is visible in the scheduler UI but missing from the print preview.

For example:

Dim ap1 As New Appointment
ap1.Start = New Date(Date.Today.Year, Date.Today.Month, Date.Today.Day, 15, 0, 0)
ap1.End = New Date(Date.Today.Year, Date.Today.Month, Date.Today.Day, 15, 0, 1)
ap1.Description = "not printed"
ap1.Summary = "not printed"
RadScheduler1.Appointments.Add(ap1)
Completed
Last Updated: 02 Jul 2026 11:17 by ADMIN
Release 2026.2.702
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PropertyGrid
Type: Bug Report
2
To reproduce:

    Sub New()

        InitializeComponent()

        Dim intItem As New PropertyStoreItem(GetType(Integer), "Integer", 1)
        Dim floatItem As New PropertyStoreItem(GetType(Single), "Float", 1.0F, "Property storing a floating point value.")
        Dim stringItem As New PropertyStoreItem(GetType(String), "String", "telerik", "Property storing a string value", "Telerik")
        Dim fontItem As New PropertyStoreItem(GetType(Font), "Font", New Font("Arial", 12, FontStyle.Italic), "Property containing Font value")

        fontItem.Attributes.Add(New ReadOnlyAttribute(True))
        floatItem.Attributes.Add(New ReadOnlyAttribute(True))
        Dim store As New RadPropertyStore
        store.Add(intItem)
        store.Add(floatItem)
        store.Add(stringItem)
        store.Add(fontItem)
        Me.RadPropertyGrid1.SelectedObject = store
    End Sub

Try to edit either the "Float" or the "Font" property. The editor will be activated although it doesn't have to.

Workaround: cancel the Editing event

    Private Sub RadPropertyGrid1_Editing(sender As Object, e As PropertyGridItemEditingEventArgs)
        If e.Item.Name = "Font" Then
            e.Cancel = True
        End If 
    End Sub
Completed
Last Updated: 02 Jul 2026 11:17 by ADMIN
Release 2026.2.702

An exception is thrown when loading a document:

FileNotFoundException: Could not load file or assembly 'Microsoft.Web.WebView2.WinForms, Version=1.0.3719.77, Culture=neutral, PublicKeyToken=2a8ab48044d2601e' or one of its dependencies. The system cannot find the file specified.

Completed
Last Updated: 02 Jul 2026 11:17 by ADMIN
Release 2026.2.702
Setting the worksheet to protected does not prevent the user from changing the name of the worksheet. 
Completed
Last Updated: 02 Jul 2026 11:16 by ADMIN
Release 2026.2.702
When I create a new document and enter text, I change it to red, I underline the text: the underlined line changes to red (the text and the underline) but on the generated RTF document after export the underline becomes black.
Completed
Last Updated: 02 Jul 2026 11:16 by ADMIN
Release 2026.2.702

The following error occurs when closing Property Builder at design time:

Completed
Last Updated: 12 Jun 2026 13:57 by ADMIN
Release 2025.4.1111 (2025 Q4)

Excel-like pop-up location is not scaled properly on High DPI.

Completed
Last Updated: 04 Jun 2026 17:58 by ADMIN
Use attached to reproduce.
Completed
Last Updated: 04 Jun 2026 17:57 by ADMIN
Workaround: 
The vsdiffmerge.exe merge tool in Visual Studio 2017 is usually located here: C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer. You will need to create one additional folder named Ide inside the Team Explorer folder Then you can copy the vsdiffmerge.exe file from the Team Explorer folder to the newly created Ide folder. You can check the attached vsdiffmerge-path.png screenshot.

Then you can create the environment variable like this:
Variable name: VS120COMNTOOLS
Path: C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\IDE
Completed
Last Updated: 04 Jun 2026 17:57 by ADMIN
Completed
Last Updated: 04 Jun 2026 17:57 by ADMIN

Hi, I would like to use the conversion tool to convert a WinForms project to Telerik controls. Unfortunately the menu item is not showing up for me. See attached screenshot. 

The project to be converted does include a reference to System.Windows.Forms. I am using VS2019 with the latest Telerik Winforms release. 

Thanks,

-Lou

Completed
Last Updated: 04 Jun 2026 17:56 by ADMIN
Created by: Dan
Comments: 1
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: 04 Jun 2026 17:56 by ADMIN
Created by: OrderMaster
Comments: 1
Category: UI Framework
Type: Feature Request
0

After a project, built with the standard MS controls, is successfully converted to a Telerik WinForms project, the subscriptions to certain events available in the Designer.cs file may disappear if you open the design view and make some changes. A solution for this behavior is described in the How to Deal with Disappearing Event Handlers after Opening the Designer for a Converted WinForms Project KB Article.

 


1 2 3 4 5 6