Hello Pierre,
The shaped form can take any specified shape including a circle, triangle or any free form shape. Because of this, we decided to treat the entire space in the form as the client area. If you dock any control in the form, it takes the whole client area and hides the form borders.
You can solve this issue in two ways:
- Set non-zero Padding to the form
- Place a standard panel and anchor it. Place all other controls inside this panel.
The height of the
RadStatusBar depends on the height of the elements inside. You can change this behavior by setting the
MinSize of the
RadStatusBar manually.
Please refer to the code snippet below:
void Form_Load(object sender, EventArgs e)//form load event |
{ |
this.radStatusStrip1.StatusBarElement.MinSize = new Size(0, 50);//new minimum size |
} |
|
In case you need further assistance, we will be glad to help you.
Kind regards,
Jack
the Telerik team