If you define an html text (ex. <html><strong>0<strong><br><strong>0<strong><html>) and align it at center or right, the second line is not vertically aligned with the first one.
If you try to load a predefined theme in your project and run the project without a debugger, you may get a missing resource exception. The solution to this issue is: Assembly lAssembly = Assembly.GetAssembly(typeof(Telerik.WinControls.Themes.Office2010Theme)); Telerik.WinControls.ThemeResolutionService.LoadPackageResource(lAssembly, "Telerik.WinControls.Themes.Office2010.tssp");
When RadScreenTip is shown for a control which resides in a non-active form, the form of RadScreenTip shows a button in the taskbar.
If you set the GenerateMember of an element to false, it generally removes 'this' from the serialized code concerning the element. However, in the cases where we have a serialized cast in the designer, the word 'this' remains. Since the element is not a member of the form/user control, we get a compile error.
TextAlign property at RadTextBoxItem is not serialized at design-time.
Host a Panel in RadHostItem and set the BackColor of the Panel. You will notice that the color set is not applied. NOTE: These properties should be set to the RadHostItem //Synch inheritable properties this.hostedControl.ForeColor = this.ForeColor; this.hostedControl.BackColor = this.BackColor;
Set Color.Orange to the border of the RadDropDownList when it is in ContainsFocus state. You will notice that the border of the control becomes orange event if it is not focused.
When RadComboBox is dynamically filled with items, the layout does not give a valid size to the items, since the dropdown is not initially opened. The current workaround is to call the UpdateLayout method: this.radComboBox1.ComboBoxElement.ComboPopupForm.ListBox.UpdateLayout();
When you place several editor instances in a FlowLayoutPanel, for example RadTextBox, RadComboBox, RadDateTimePicker and set their Width to 100, this setting is lost when you run the project.
When you try to set a value to the ToolTipText property of a RadItem (let's say RadButtonElement), this setting is not serialized in the designer.
Project Upgrade Utility tries to write in project files that do not contain any Telerik references. However, only the files that contain Telerik references should be modified and saved.
RadScreeTip has a wrong size the first time it is displayed. This size cannot be changed.
When the RadTextBox.Anchor is set to Bottom, Left, Right (and the AutoSize property is true), RadTextBox.Location is set to a wrong value when the form loads. This is a general RadControls issue.
Project Update Utility should be able to update vbproj files as well.
If you have a RadSplitContainer with three panels, the image set to the grip will not be shown for the second splitter.
Create several sample DocumentWindows in a DocumentTabStrip in RadDock and select the first of them. Now, through the overflow menu, select the last one in the row. It will appear partially and you will not be able to read the text. This should be tested in all tab alignment modes.
A wizard control will be a nice addition to the RadControls suite
A user should be able to define more RadToolTip settings such as delay, duration and colors.
One should be able to define the exact location (in coordinates) for RadScreenTip. Currently, the screentip for the quick access buttons is shown below RadRibbonBar, but it should actually be shown under the buttons.
Currently, if one wants to set the theme of his/her controls programmatically, he/she has to set a string value. However, the string value that has to be set is different from the class name of the theme component, so the user does not know what to set. A property that returns the ThemeName string should be implemented in each of the theme components.