Completed
Last Updated: 13 Oct 2014 12:50 by ADMIN
If you have a RadControl with Anchor Left, Top, Bottom, Right in a ToolWindow, the next time you close and reopen the designer in VS, this RadControl gets a bigger size.
Completed
Last Updated: 28 Nov 2014 09:53 by ADMIN
CodedUI playback does not able to recognize a button placed in RibbonBar ButtonGroup/Group
Completed
Last Updated: 11 Dec 2015 14:55 by ADMIN
Currently there is no such component in RadControls for WinForms

Resolution: In Q2 2014 we introduced Spread Processing which use the RadSpreadProcessing library. You can refer to our help documentation for more information. Here the link http://www.telerik.com/help/winforms/spreadprocessing-overview.html 
Completed
Last Updated: 14 May 2014 08:31 by ADMIN
ADMIN
Created by: Ivan Petrov
Comments: 0
Category: UI Framework
Type: Feature Request
6
Text baseline alignment capabilities for Rad controls.
Completed
Last Updated: 11 Dec 2015 13:46 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: UI Framework
Type: Bug Report
6
Let's have two controls - RadLabel and RadCheckBox and a form, anchored to Bottom, Right. Show a form containing these controls in maximized mode and you will notice that the controls' location is not correct.
Completed
Last Updated: 08 Apr 2014 14:58 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI Framework
Type: Feature Request
5
Update the Aqua theme to be used with the new VSB
Completed
Last Updated: 18 Jun 2014 08:13 by ADMIN
ADMIN
Created by: Peter
Comments: 0
Category: UI Framework
Type: Feature Request
5
Windows should read MessageBox Title, MessageBox Text and Highlighted Button
Completed
Last Updated: 23 Apr 2014 12:56 by ADMIN
ADMIN
Created by: Martin Vasilev
Comments: 0
Category: UI Framework
Type: Bug Report
5
Right and bottom padding does not working corectly when there is TextWrap
Completed
Last Updated: 10 May 2022 05:39 by ADMIN
Release R2 2022
Created by: Todor
Comments: 0
Category: UI Framework
Type: Feature Request
5
At the moment, RadCalculatorDropDown allows displaying a calculator only in a popup editor. The new control should allow placing a calculator on a form or a user control.
Completed
Last Updated: 11 Feb 2014 15:41 by ADMIN
RadPrintSettingsDialog should supports metrics in cm, not only in inches
Completed
Last Updated: 13 Oct 2014 11:28 by Thomas
Workaround: load the themes with ThemeResolutionService: http://www.telerik.com/help/winforms/themes-using-custom-themes.html
Completed
Last Updated: 08 Sep 2014 15:15 by ADMIN
Wrapped text in bullet point paragraph is not aligned correctly.
Completed
Last Updated: 15 Jun 2017 11:14 by ADMIN
ADMIN
Created by: Stefan
Comments: 2
Category: UI Framework
Type: Feature Request
4

			
Completed
Last Updated: 05 Jun 2015 08:55 by ADMIN
ADMIN
Created by: Jack
Comments: 5
Category: UI Framework
Type: Feature Request
4
This control will manage  the size and presentation of its child controls depending on the resolution of the screen and the width/height of the used monitor at the end user.
Completed
Last Updated: 24 Mar 2017 14:47 by ADMIN
To reproduce:
- Set ShowRootLines to true
- Apply one of the following themes: Aqua, Office2007, TelerikMetro, VS2012

Workaround:
- Open the theme in visual style builder
- Expand the RadTreeView in the ControlStructureWindow
- Select TreeNodeExpandItem and expand it in the Elements window
- Navigate to the PossitionOffset property and set its width to 1
Completed
Last Updated: 28 Aug 2017 11:48 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 1
Category: UI Framework
Type: Bug Report
4
To reproduce: if you set in the app.manifest file  <dpiAware>false</dpiAware>, the controls still scale when changing DPI.

Workaround:
Public Class RadForm1
    Protected Overrides Sub OnLoad(e As EventArgs)

        Dim allowTheming = DirectCast(GetType(RadForm).GetField("allowTheming", BindingFlags.Instance Or BindingFlags.NonPublic).GetValue(Me), Boolean?)

        Dim behavior As ThemedFormBehavior = TryCast(Me.FormBehavior, ThemedFormBehavior)
        If behavior IsNot Nothing AndAlso allowTheming.HasValue AndAlso behavior.AllowTheming <> Me.AllowTheming Then
            behavior.AllowTheming = allowTheming.Value
        End If

        If Me.IsDesignMode Then
            GetType(RadFormControlBase).GetField("initialFormLocation", BindingFlags.Instance Or BindingFlags.NonPublic).SetValue(Me, Me.Location)

            Return
        End If

        Dim mi As MethodInfo = GetType(Form).GetMethod("OnLoad", BindingFlags.Instance Or BindingFlags.NonPublic)
        Dim ptr As IntPtr = mi.MethodHandle.GetFunctionPointer()
        Dim formOnOnLoad As Action(Of EventArgs) = DirectCast(Activator.CreateInstance(GetType(Action(Of EventArgs)), Me, ptr), Action(Of EventArgs))

        formOnOnLoad(e)
    End Sub

End Class
Completed
Last Updated: 22 Jul 2014 13:35 by Curtis
Steps to reproduce:
1. Add a small button to a form.
2. On click of this button show an OpenFileDialog.
3. Add a big button to the form
4. Add some sort of notification in the big button's click event handler (RadMessageBox)
5. Run the project and open the file dialog.
6. Position the dialog so the file (inside the open file dialog) you will choose will be over the big button.
7. Select a file by double clicking on it.

You will see that the Click event for the big button will be fired.
Completed
Last Updated: 10 Aug 2012 07:42 by ADMIN
No matter that is the ToggleState of the check box, when disabled always shows as ToggleState.Off. Appears with Office2007Black and probably other themes.

To work around the issue, capture two images of the check box in enabled state for the On and Indeterminate state and assign those when the check box is disabled. Here is a sample:

 public Form1()
        {
            InitializeComponent();


            radCheckBoxElement1.IsThreeState = true;
            radCheckBoxElement1.ToggleState = Telerik.WinControls.Enumerations.ToggleState.On;

            radCheckBoxElement2.IsThreeState = true;
            radCheckBoxElement2.ToggleState = Telerik.WinControls.Enumerations.ToggleState.Off;

            radCheckBoxElement3.IsThreeState = true;
            radCheckBoxElement3.ToggleState = Telerik.WinControls.Enumerations.ToggleState.Indeterminate;

            radCheckBoxElement1.EnabledChanged += new EventHandler(radCheckBoxElement1_EnabledChanged);
            radCheckBoxElement2.EnabledChanged += new EventHandler(radCheckBoxElement1_EnabledChanged);
            radCheckBoxElement3.EnabledChanged += new EventHandler(radCheckBoxElement1_EnabledChanged);
        }

        void radCheckBoxElement1_EnabledChanged(object sender, EventArgs e)
        {
            RadCheckBoxElement checkBox = sender as RadCheckBoxElement;
            if (checkBox.Enabled)
            {
                checkBox.CheckMarkPrimitive.Image = null;
            }
            else if (checkBox.ToggleState == Telerik.WinControls.Enumerations.ToggleState.On)
            {
                checkBox.CheckMarkPrimitive.Image = Resources.check;
            }
            else if (checkBox.ToggleState == Telerik.WinControls.Enumerations.ToggleState.Indeterminate)
            {
                checkBox.CheckMarkPrimitive.Image = Resources.indeterminate;
            }
        }

        private void radButton1_Click(object sender, EventArgs e)
        {
            radCheckBoxElement1.Enabled = radCheckBoxElement2.Enabled = radCheckBoxElement3.Enabled = !radCheckBoxElement1.Enabled;
        }
Completed
Last Updated: 20 Feb 2014 08:20 by ADMIN
ADD. Data (field) form - a wizard which accepts an object and according to its properties data types, creates a form with respADD. Data (field) form - a wizard which accepts an object and according to its properties data types, creates a form with respective controls