To reproduce: - Navigate to the first look sample for data entry. - Add some new rows and try to navigate to them.
Workaround: 1. Explicitly set the font of the parent of the controls. 2. Use a custom theme with the FontSegoeUI8.25 repository: check the attached screenshot
Workaround: use a bigger image Me.radCheckBox1.ButtonElement.CheckMarkPrimitive.CheckElement.ShouldPaint = False Dim dpi As Point = NativeMethods.GetSystemDpi() Dim scale As Integer = dpi.X If scale >= 300 Then Me.radCheckBox1.ButtonElement.CheckMarkPrimitive.Image = Image.FromFile("..\..\check-mark.png") ElseIf scale >= 200 Then '... Else '... End If
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.
The RadSplitButtonElements are rendered with the default color from the theme not with the ribbon color (like the RadDropDownButton)
Please set the RadLabel text to "<html><a href="http://www.telerik.com">Awesome WinForms Control Suite</a></html>"
RadOffice2007ScreenTipElement does not have all themes (except the ControlDefault Theme)
RadPageView in BackStageMode loses its content when user changes the theme from the Listbox, placed into BackStageView. For example, user choose Office2010Black or Office2007Black or HighContrast and BackStage view appears empty Workaround: all recursively the UpdateLayout method for all RadControls in the form private void RefreshAll() { foreach(Control control in this.Controls) { RefreshAllControls(control); } } void RefreshAllControls(Control ctrl) { foreach (Control control in ctrl.Controls) { RadControl radControl = control as RadControl; if (radControl != null) { radControl.RootElement.InvalidateMeasure(true); radControl.RootElement.UpdateLayout(); } RefreshAllControls(control); } }
There is no style applied to the RadTreeView drag&drop indicator.
If you place a control in RadHostItem and you put this host item in a parent element, the parent element will not be resized correctly, because the RadHostItem will not provide the correct size.
Let's say that you have a ShapedForm in VS. You navigate to its Shape property and try to create a custom shape through the Shape Editor. However, at the end the shape that you have created will not be applied correctly to the form.
Windows7Theme - RadGridView has incorrect behavior when AutoSizeRows property is set to true. Steps to reproduce: 1. Create grid with several rows. 2. Set AutoSizeRows property to "true" 3. Run application and move mouse over the rows.
The InitialDelay property of ToolTips does not work Work Around: ToolTip tooltip = new ToolTip(); tooltip.InitialDelay = 1000; tooltip.Hide(this.radListView1); this.tooltip.Show(DateTime.Now.ToString(), this.radListView1);
To reproduce: - add a grid with some sample rows - apply TelerikMetro theme to the grid - select the rightmost column - you will notice that there is 1px extra space between the grid border and the column Workaround: - Open the TelerikMetro theme in Visual Style Builder. - Expand RadGridView up to GridTableElement. - In the elements window expand TableElement - Set the padding property to 0.
Steps to reproduce: 1) Add RadDropDownButton control 2) Load Office2010Black theme 3) Define specific System.Drawing.Font: Font font = new Font("Arial", 12.00f, System.Drawing.FontStyle.Italic); 4) Create RadMenuItem: RadMenuItem myRadMenuItem = new RadMenuItem(); myRadMenuItem.Text = "My New Item"; myRadMenuItem.Font = font; radDropDownButton1.Items.Add(myRadMenuItem); Expected result: change the font of the RadMenuItem Actual result: nothing happens WORKAROUND: 1) Open Visual Style Builder and load the Office2010Black theme 2) In the Controls Structure pane navigate to RadMenu - DropDown>> RadMenuItem and select the RadMenuItemTextPrimitive item from the Elements Pane. 3) Remove FontSegoeUI8pt and ForeColorBlack repository items 4) Select the RadMenuItem item from the Elements Pane and add FontSegoeUI8pt and ForeColorBlack repository items 5) Save the theme and load it in your application
FIX. Mnemonics are executed without the control being on focus or ALT key pressed.
FIX. Theme: RadMultiColumnComboBox arrow button theme is different than the other drop down controls (ControlDefault)
Description: When using RadPageView in strip view mode with Office2007Black theme the header and footer have a label containing the text of the current page. To reproduce: -Add a pageView -Add a page -Change the theme to Office2007Black Workaround: ((RadPageViewStripElement)radPageView1.ViewElement).Footer.Visibility = ElementVisibility.Collapsed; ((RadPageViewStripElement)radPageView1.ViewElement).Header.Visibility = ElementVisibility.Collapsed;
1. Create a new project and add RadDropDownList. 2. Change the application theme to be Windows 8. 3. Dock the drop down list to bottom of your form. 4. Run the project and maximize the form.