设计器会弄乱设计启用的Custom UserControl子容器的位置和大小

时间:2018-03-16 00:10:41

标签: user-controls custom-controls windows-forms-designer nested-controls

当我将此控件放到表单上时,更改它的大小和位置,保存并关闭表单。打开它之后,位置和大小不一样,但在“.Designer.cs”中,它正是我设置它的方式。 我找不到这个问题的解决方案,甚至没有人提到它。

这是我正在使用的自定义控件的一个简单示例:

[Designer(typeof(myControlDesigner1))]
public partial class UserControl1 : UserControl
{
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
    [TypeConverter(typeof(Panel))]
    [MergableProperty(false)]
    public System.Windows.Forms.Panel Panel
    {
        get
        {
            return pnlWorkingArea;
        }

        set
        {
            pnlWorkingArea = value;
        }
    }

    public UserControl1()
    {
        InitializeComponent();
    }
}

public class myControlDesigner1 : ControlDesigner
{
    public override void Initialize(IComponent component)
    {
        base.Initialize(component);
        UserControl1 bc = component as UserControl1;
        EnableDesignMode(bc.Panel, "MyPanel");
    }
}

1 个答案:

答案 0 :(得分:0)

是的我现在可以重现你的问题,那是因为面板在usercontrol里面,它们作为一个整体添加到Form中,这意味着面板的位置是相对于usercontrol的,所以如果你设置的位置panel是(x,y),然后当你重新打开表单时,面板的实际位置将是(usercontrol.location.X + x,usercontrol.location.Y + y)。

如果你在表单中设置usercontrol的位置是(0,0),你会发现没有任何问题,请试一试。

如果您不想设置usercontrol的位置为(0,0),作为替代解决方案,您可以在Form_Load事件中添加以下代码,因此该位置将是您在运行时设置它的位置形式:

private void Form1_Load(object sender, EventArgs e)
{
    this.userControl11.Panel.Location = new Point(userControl11.Panel.Location.X - userControl11.Location.X, userControl11.Panel.Location.Y - userControl11.Location.Y);
}