Completed
Last Updated: 15 Feb 2021 10:48 by ADMIN
Release R1 2021 SP2
Ketan
Created on: 09 Dec 2020 09:11
Category: Form
Type: Bug Report
0
RadForm: border is missing after maximize the form by double click the title bar then return it to its normal state in 2020.3.1020 Telerik version

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

1 comment
ADMIN
Nadya | Tech Support Engineer
Posted on: 09 Dec 2020 09:34

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/.