码迷,mamicode.com
首页 > 移动开发 > 详细

C# 隐藏标题栏 调整大小 并且移动窗口

时间:2014-07-22 22:32:34      阅读:356      评论:0      收藏:0      [点我收藏+]

标签:blog   io   for   re   c   div   

隐藏标题栏(窗口属性):

1、设置在该窗体的标题栏中是否显示控件框:

this.ControlBox = false;

2、设置在该窗体的标题为空:

this.Text = string.Empty;

3、移动窗口:实现Form的函数WndProc

        #region 实现点击移动
        internal static int WM_NCHITTEST = 0x84;
        internal static IntPtr HTCLIENT = (IntPtr)0x1;
        internal static IntPtr HTCAPTION = (IntPtr)0x2;
        internal static int WM_NCLBUTTONDBLCLK = 0x00A3;
        protected override void WndProc(ref Message m)
        {
            if (m.Msg == WM_NCLBUTTONDBLCLK)
            {
                return;
            }
            if (m.Msg == WM_NCHITTEST)
            {
                base.WndProc(ref m);
                if (m.Result == HTCLIENT)
                {
                    m.HWnd = this.Handle;
                    m.Result = HTCAPTION;
                }
                return;
            }
            base.WndProc(ref m);
        }
        #endregion    

  

C# 隐藏标题栏 调整大小 并且移动窗口,布布扣,bubuko.com

C# 隐藏标题栏 调整大小 并且移动窗口

标签:blog   io   for   re   c   div   

原文地址:http://www.cnblogs.com/WuSyy/p/CShare.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!