鼠标左侧的Windows 7自动尺寸?

时间:2011-03-07 05:10:04

标签: windows-7 size

我想知道在Windows 7上有这样的功能,当你的鼠标点击表格左/右顶部时,它将自动调整窗口大小到屏幕的一半。我正试图用我的MDI Child做到这一点。这是我的代码,但功能不起作用。

private void Form1_MouseMove(object sender, MouseEventArgs e)
    {
        Form1 f1 = new Form1();
        if (e.X == f1.Width/2 - 30)
        {
            Form activeChild = this.ActiveMdiChild;
            activeChild.Width = this.Width / 2;
            activeChild.Height = this.Height;
            activeChild.Dock = DockStyle.Left;
        }
    }

1 个答案:

答案 0 :(得分:0)

您可以尝试在实际子窗体的Move事件上执行此操作。在任何情况下,基于Form1的新实例处理事件都不会很好。无论如何,这里有一些代码,因为它会在孩子内部看到。 (丑陋,但它至少做了些什么。)

    private void SubForm_Move(object sender, EventArgs e)
    {
        if (Location.X <= 0)
        {
            Width = MdiParent.Width / 2;
            Height = MdiParent.Height;
            Location = new Point(0,0);
            Dock = DockStyle.Left;
        }
    }