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.
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)
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.
A user should be able to define more RadToolTip settings such as delay, duration and colors.
A wizard control will be a nice addition to the RadControls suite
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.
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.
Currently, only the GDI+ primitives can be blended. Some of the theme however, contain images instead of GDI+ primitives. It will be nice if images can also be blended according to user defined color.
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.
If you fill a WrapLayoutPanel with some content and set it to the ViewPort property of the RadScrollViewer, you will notice that RadScrollViewer will not scroll the panel correctly. Workaround: http://www.telerik.com/forums/scrolling-using-wraplayoutpanel#yirv_YCJAESwbvexlHks8Q
The color blending feature does not work if you try to use it in the constructor of a form. It works only if you set it at Form_Load or at a later moment.
If you are using span tag in cooperation with style attribute, the following html concat "Training Room B" string: <html><p><i><span style="font-family: Microsoft Sans Serif;font-size: 13.3px;color: #C57300;">Welcome to RoBase</span></i><i><span style="font-family: Microsoft Sans Serif;font-size: 10.7px;color: #C57300;">,</span></i><span style="font-family: Microsoft Sans Serif;font-size: 11px;color: #000000;"> Please be aware that </span><span style="font-family: Microsoft Sans Serif;font-size: 11px;color: #C50000;">Training Room A</span><span style="font-family: Microsoft Sans Serif;font-size: 11px;color: #000000;"> will be off limits for the rest of the week for a much needed paint job. </span><b><span style="font-family: Microsoft Sans Serif;font-size: 11px;color: #008116;">Training Room B</span></b><span style="font-family: Microsoft Sans Serif;font-size: 11px;color: #000000;"> is still available and the Conference Room can be used if needed.</span><span style="font-family: Calibri;font-size: 16px;color: #000000;"><br /></span></p><p><span style="font-family: Microsoft Sans Serif;font-size: 11px;color: #000000;">See Linda to reserve it. Thanks.</span></p></html>
Add heatmap control as in the WPF suite http://www.telerik.com/products/wpf/heatmap.aspx
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);
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.
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