In Development
Last Updated: 14 Mar 2024 10:13 by ADMIN
Dinko
Created on: 15 Mar 2022 09:23
Category: Separator
Type: Bug Report
1
Separator: When Anchor is set to Right, the Width is Increasing in the Designer

In this case, the Anchor property of the Separator is set to Left, Top, Right. When we close multiple times the designer, the width of the Separator is increased. A possible workaround here is to avoid adding Anchor to the right in the designer and set it in code.

public RadForm1()
{
    InitializeComponent();
    this.radSeparator1.Anchor = AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
}

 

0 comments