To reproduce:
1. Use the 2020.3.1020 Telerik version
2. Show RadForm and set MinimumSize property
3. Double Click the Title Bar to maximize the form or click the Maximize button
4. Double Click the Title Bar again and see that no border is shown.
Thanks
Hi, Ketan,
To workaround use the following code snippet:
public RadForm2()
{
InitializeComponent();
this.FormElement.TitleBar.DoubleClick += this.TitleBar_DoubleClick;
}
private void TitleBar_DoubleClick(object sender, EventArgs e)
{
this.FormElement.Border.Visibility = ElementVisibility.Visible;
}
I hope this helps.
Regards,
Nadya
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.