Two things quickly.
Why has the forum link to UI for WinForms (http://www.telerik.com/forums/winforms) disappeared from the main Telerik Developer Forums page (http://www.telerik.com/forums) and why is it no longer accessible directly but this sub forum is available?
Also, UI for WinForms Q1 2016 (version 2016.1.112) has been released but it isn't yet available for download and installation in the Control Panel. I've been waiting for some fixes for a while now and really need this latest version to able to continue with the build and release of the next versions of my applications.
I assume things will be up and running soon but wanted to post this in case these haven't been picked up on yet.

Hi all,
is there a possibility to erase (or set it to color white) the small vertical line (see attached pictures) in a DropDownButtonElement-DropDownMenu?
Or is it the radMenuSeparatorItem?
FillPrimitive fp = burgermenu.DropDownButtonElement.FindDescendant<FillPrimitive>();
fp.ForeColor = Color.White;
fp.BackColor = Color.White;
fp.GradientStyle = Telerik.WinControls.GradientStyles.Solid;
didn't work.
Kind regards
Oliver
Public Sub ShowMenuShortCuts(ByVal AMenuItems As Telerik.WinControls.RadItemOwnerCollection) Dim i As Int32 = 0 While (i < AMenuItems.Count) Try CType(AMenuItems(i).Children(2).Children(0).Children(1).Children(0), Telerik.WinControls.Primitives.TextPrimitive).ShowKeyboardCues = True AddHandler CType(AMenuItems(i).Children(2).Children(0).Children(1).Children(0), Telerik.WinControls.Primitives.TextPrimitive).PropertyChanged, AddressOf MenuPropertyChanged If (TypeOf AMenuItems(i) Is myMenuItem) AndAlso (CType(AMenuItems(i), myMenuItem).Items.Count > 0) Then ShowMenuShortCuts(CType(AMenuItems(i), myMenuItem).Items) End If Catch 'Failure End Try i += 1 End WhileEnd SubPublic Sub MenuPropertyChanged(ByVal sender As Object, ByVal e As PropertyChangedEventArgs) Dim tPrimitive As Telerik.WinControls.Primitives.TextPrimitive tPrimitive = CType(sender, Telerik.WinControls.Primitives.TextPrimitive) If (e.PropertyName = "ShowKeyboardCues" AndAlso (Not tPrimitive.ShowKeyboardCues)) Then tPrimitive.ShowKeyboardCues = True End IfEnd Sub
Hi All,
i create new winform and add radRibbonBar, but whenever open the form, it automatically added a another, please see attach file.

When the datasource is set for a gridview with sorting applied, the first row in the Rows collection is selected rather than the first row in the ChildRows collection. This causes the gridview to scroll to the position of the first row in the datasource rather than the first displayed row in the gridview.
Steps to reproduce:
Set the datasource for the gridview
Sort the gridview
Set the datasource for the gridview again
The first row in the datasource will be selected and scrolled to, rather than the first displayed row.


I have a grid populated from a base class. The base class has a enum property to identify what type of derived object it is. When the user adds a new row and changes that enum value, I need to replace the object with the associated derived type. Example:
public enum ObjectType{ Base, ChildA, ChildB}public class Base { public ObjectType Type { get; set; }}public class ChildA : Base { }public class ChildB : Base { }The grid will initially create a new row with a DataBoundObject of Type 'Base'.
When the the user changes the 'ObjectType' column to 'ObjectType.ChildA' I need to replace the row's DataBoundObject with a new instance of 'ChildA'.
The grid's DataSource is set to a BindingSource; who's DataSource is set to BindingList<Base>.
I tried to replace the object in the BindingList. Then set the BindingSource.DataSource to the updated BindingList. And then call BindingSource.ResetBindings(false) to updated the GridView. But I receive a NullReferenceException.
How can I replace the Row's DataBoundObject with a derived object?