Hello Telerik Team,
I need to add functionality to dropdown buttons in our project (hook up Initialized event). However, when i tried to do so I have encountered problem with Layout of subclassed control. I have solved the problem by overriding following property
public override string ThemeClassName
{
get
{
return "Telerik.WinControls.UI.RadDropDownButton";
}
set
{
base.ThemeClassName = "Telerik.WinControls.UI.RadDropDownButton";
}
}
is this valid solution? I have no idea why subclassed control got "wrong" layout. Is there any reference in documentation that would help me understand why this problem occured?
I need to add functionality to dropdown buttons in our project (hook up Initialized event). However, when i tried to do so I have encountered problem with Layout of subclassed control. I have solved the problem by overriding following property
public override string ThemeClassName
{
get
{
return "Telerik.WinControls.UI.RadDropDownButton";
}
set
{
base.ThemeClassName = "Telerik.WinControls.UI.RadDropDownButton";
}
}
is this valid solution? I have no idea why subclassed control got "wrong" layout. Is there any reference in documentation that would help me understand why this problem occured?