Hi Pawan,
Thank you for writing.
You can access the radio primitive and change its minimum size this way:
I hope this helps. Should you have further questions please do not hesitate to write back.
Regards,
Hristo Merdjanov
Telerik by Progress
Thank you for writing.
You can access the radio primitive and change its minimum size this way:
RadioPrimitive primitive =
this
.radRadioButton1.ButtonElement.CheckMarkPrimitive.FindDescendant<RadioPrimitive>();
if
(primitive !=
null
)
{
primitive.MinSize =
new
Size(primitive.Size.Width * 2, primitive.Size.Height * 2);
}
I hope this helps. Should you have further questions please do not hesitate to write back.
Regards,
Hristo Merdjanov
Telerik by Progress
Check out the Windows Forms project converter, which aids the conversion process from standard Windows Forms applications written in C# or VB to Telerik UI for WinForms.For more information check out this blog post and share your thoughts.