日期:2014-05-17  浏览次数:20889 次

如何移动无边框的窗体?
网上找的办法不太可靠,希望朋友们能给个代码。


------解决方案--------------------
http://www.google.com.hk/search?hl=zh-CN&q=wpf+dragmove&hl=zh-CN&sourceid=cndr
------解决方案--------------------
事件加到窗体上

private int startX;
private int startY;   
private void Form_MouseDown(object sender, MouseEventArgs e)
{
    if (e.Button == MouseButtons.Left)
    {
        startX = e.X;
        startY = e.Y;
    }
}

private void Form_MouseMove(object sender, MouseEventArgs e)
{
    if (startX != 0)
    {
        this.Left += e.X - startX;
        this.Top += e.Y - startY;
    }
}

private void Form_MouseUp(object sender, MouseEventArgs e)
{
    startX = 0;
}

------解决方案--------------------
我晕,搞那么复杂干嘛,
this.Left += 100;
这就是你想表达的意思吧
------解决方案--------------------

const int HTLEFT = 10;
const int HTRIGHT = 11;
const int HTTOP = 12;
const int HTTOPLEFT = 13;
const int HTTOPRIGHT = 14;
const int HTBOTTOM = 15;
const int HTBOTTOMLEFT = 0x10;
const int HTBOTTOMRIGHT = 17;

protected override void WndProc(ref Message m)
{
    switch (m.Msg)
    {
        case 0x0084:
            base.WndProc(ref m);
            Point vPoint = new Point((int)m.LParam & 0xFFFF,
                (int)m.LParam >> 16 & 0xFFFF);
            vPoint = PointToClient(vPoint);
            if (vPoint.X <= 5)
             &nb