public partial class F11 : Form
{
    public F11()
    {
        InitializeComponent();//系统自动构造F11窗体
    }

    private void button1_Click(object sender, EventArgs e)//button1的单击事件
    {
        button1.Parent = this;//将button1的父容器改为窗体F11的实例
        button1.BringToFront();//将button1置于顶层以免被遮挡。
    }
}

其中,button1.Parent=this,这个我一开始是写的button1.Parent=F11
结果不对,原因是F11并非一个实例,它只是一个类。要想取得它的实例,要通过this关键字来取得。

Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐