将usercontrol动态添加到中心的选项卡面板

时间:2012-02-28 06:29:31

标签: c# c#-4.0

我将usercontrol动态添加到选项卡面板,如何将其添加到中心位置 关于标签面板?

1 个答案:

答案 0 :(得分:2)

控件的 Location Anchor 属性应允许您动态定位控件。

        this.userControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                    | System.Windows.Forms.AnchorStyles.Left)
                    | System.Windows.Forms.AnchorStyles.Right)));
        this.userControl.Location = new System.Drawing.Point(108, 85);