Hi
I've extended from RadMenuItem. But while rendering the style is missed. I had the same problem for my customized RadTreeView, Which was solved this way:
public class KSTree : RadTreeView
{
public KSTree()
{
this.FullRowSelect = false;
this.ShowLines = true;
this.LineStyle = TreeLineStyle.Solid;
}
public override string ThemeClassName
{
get
{
return typeof(RadTreeView).FullName;
}
}
}
But there is no similar property to override for RadMenuItem. Is there any solution?
Thanks.
I've extended from RadMenuItem. But while rendering the style is missed. I had the same problem for my customized RadTreeView, Which was solved this way:
public class KSTree : RadTreeView
{
public KSTree()
{
this.FullRowSelect = false;
this.ShowLines = true;
this.LineStyle = TreeLineStyle.Solid;
}
public override string ThemeClassName
{
get
{
return typeof(RadTreeView).FullName;
}
}
}
But there is no similar property to override for RadMenuItem. Is there any solution?
Thanks.