1. Create a new project with RadCarousel. 2. Add some items. 3. On item click change the current theme. 4. Run the project and click an item.
1. Create a new project and add RadThemeManager 2. Add several themes located as resources 3. Run the project and only a few of the themes will apply
FIX. RadGroupBox - memory leak when the group box Dock = Fill and Office2010Black theme is applied Work around: this.radGroupBox1.Behavior.BitmapRepository.DisableBitmapCache = true; RadDock: Add a dock with two tool windows in a UserControl. In the toolwindows add grid and a tree. Apply Office2010Black theme to RadDock. Place the control on a form, dock it and run the app. Constantly resize the form and observe the memory used. Work around: radDock1.Behavior.BitmapRepository.DisableBitmapCache = true;
The settings from the dialog opened by the Print button on the RadPrintPreviewDialog are not taken into consideration.
FIX. RadRibbonBar - changing the themes between Office2007Silver, Office2007Black and ControlDefault, causes invalid group caption ForeColor
IMPROVE - FilterPredicate should allow passing a parameter as argument to the predicate method implemented new generic Find<> and FindNodes<>, support callbacks amd lamba expression: public TreeViewSelection() { InitializeComponent(); treeView.Dock = DockStyle.Fill; treeView.Parent = this.panel1; treeView.MultiSelect = true; treeView.Nodes.Add("1"); treeView.Nodes.Add("2"); treeView.Nodes.Add("2"); treeView.Nodes.Add("2"); treeView.Nodes[0].Nodes.Add("11"); treeView.Nodes[0].Nodes.Add("12"); treeView.Nodes[0].Nodes.Add("13"); RadTreeNode node = this.treeView.Find<string>(FindName, "11"); node = this.treeView.Find<string>((n, x) => n.Name == x, "12"); } private bool FindName(RadTreeNode node, string name) { if (node.Text == name) { return true; } return false; }
1. Create application with MDI 2. Add menu to the container form 3. Add a shortcut and on shortcut click open a new child form 4. Run the project and click the shortcut several times
The RadElement Click event is fired also when the validation is not complete (valid) in focused control on the Form. The event must be suspended in this situation like RadButton Click event.
FIX. RadMultiColunmComboBox editable area should look like RadDropDownList editable area
FIX. TPF - while validating a control, it is possible to click RadTreeView, RadGridView, etc, while it is not possible to click standard controls. Additionally, when the RadTreeView control is clicked, its events are getting fired too.
FIX. Themes - RadDateTimeEditor have an incorrect gradient color setting.
FIX. Theme: RadMultiColumnComboBox arrow button theme is different than the other drop down controls (ControlDefault)
Implement PivotGrid control for Winforms.
ADD. BorderPrimitive - add ability to show the border in dashed or dotted style
FIX. Mnemonics are executed without the control being on focus or ALT key pressed.
ADD. Spellchecker for RadControls
Currently the text is not readable when using high contrast theme and the Element hierarchy editor
FIX. RadShortcut executes even if the control is disabled - RadButton click event still fires when shortcut is executed, no matter that the button is disabled.
The issue appears when you change the DPI settings for the PC and try to create an application with RadDock and RadPageView.
1. Create a new project and add a RadGridView 2. Add a large number of columns (e.g 400) 3. Apply grouping 4. Run on a citrix environment or a virtual machine