BaseMotherForm.cs 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.IO;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using System.Reflection;
  10. using System.Drawing.Drawing2D;
  11. using LYFZ.WinAPI;
  12. namespace LYFZ.ComponentLibrary
  13. {
  14. /// <summary>
  15. /// 无边框窗体母窗体
  16. /// </summary>
  17. public partial class BaseMotherForm : Form
  18. {
  19. public BaseMotherForm()
  20. {
  21. InitializeComponent();
  22. SetStyles();
  23. }
  24. void BaseMotherForm_DoubleClick(object sender, EventArgs e)
  25. {
  26. SetWindowState();
  27. }
  28. #region 减少闪烁
  29. private void SetStyles()
  30. {
  31. SetStyle(
  32. ControlStyles.UserPaint |
  33. ControlStyles.AllPaintingInWmPaint |
  34. ControlStyles.OptimizedDoubleBuffer |
  35. ControlStyles.ResizeRedraw |
  36. ControlStyles.DoubleBuffer, true);
  37. //强制分配样式重新应用到控件上
  38. UpdateStyles();
  39. base.AutoScaleMode = AutoScaleMode.None;
  40. }
  41. #endregion
  42. private void BaseMotherForm_MouseDown(object sender, MouseEventArgs e)
  43. {
  44. if(e.Clicks==1)
  45. FormMove();
  46. }
  47. /// <summary>
  48. /// 移动窗体
  49. /// </summary>
  50. public void FormMove()
  51. {
  52. if (FormMobile)
  53. {
  54. Win32.FormMobile(this.Handle);
  55. }
  56. }
  57. #region 变量属性
  58. //不显示FormBorderStyle属性
  59. [Browsable(false)]
  60. [EditorBrowsable(EditorBrowsableState.Never)]
  61. [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
  62. public new FormBorderStyle FormBorderStyle
  63. {
  64. get { return base.FormBorderStyle; }
  65. set { base.FormBorderStyle = FormBorderStyle.None; }
  66. }
  67. private bool _FormMobile = true;
  68. /// <summary>
  69. /// 窗体是否可以移动
  70. /// </summary>
  71. [DescriptionAttribute("窗体是否可以移动"), CategoryAttribute("自定义窗体属性"), DefaultValueAttribute(typeof(bool), "true")]
  72. public bool FormMobile
  73. {
  74. get { return _FormMobile; }
  75. set
  76. {
  77. if (_FormMobile != value)
  78. {
  79. _FormMobile = value;
  80. }
  81. }
  82. }
  83. private bool _isMaximized = true;
  84. /// <summary>
  85. /// 窗体是是允许最大化
  86. /// </summary>
  87. [Category("自定义窗体属性")]
  88. [Description("窗体是是允许最大化")]
  89. [DefaultValue(typeof(bool), "true")]
  90. public bool IsMaximized
  91. {
  92. get { return _isMaximized; }
  93. set { _isMaximized = value;}
  94. }
  95. private bool _isReion = false;
  96. /// <summary>
  97. /// 窗体是是否圆角
  98. /// </summary>
  99. [Category("自定义窗体属性")]
  100. [Description("窗体是是否圆角")]
  101. [DefaultValue(typeof(bool), "false")]
  102. public bool IsReion
  103. {
  104. get { return _isReion; }
  105. set { _isReion = value; }
  106. }
  107. bool _isFullScreen = false;
  108. /// <summary>
  109. /// 窗体WindowState为FormWindowState.Maximized值时,是否可以全屏显示
  110. /// </summary>
  111. [Category("自定义窗体属性")]
  112. [Description("窗体WindowState为FormWindowState.Maximized值时,是否可以全屏显示")]
  113. [DefaultValue(typeof(bool), "false")]
  114. public bool IsFullScreen
  115. {
  116. get { return _isFullScreen; }
  117. set { _isFullScreen = value; }
  118. }
  119. bool _isUserControlsSize = false;
  120. /// <summary>
  121. /// 窗体是否允许用户拖动控件大小
  122. /// </summary>
  123. [Category("自定义窗体属性")]
  124. [Description("窗体是否允许用户拖动控件大小")]
  125. [DefaultValue(typeof(bool), "false")]
  126. public bool IsUserControlsSize
  127. {
  128. get { return _isUserControlsSize; }
  129. set { _isUserControlsSize = value; }
  130. }
  131. #endregion
  132. //控件首次创建时被调用
  133. protected override void OnCreateControl()
  134. {
  135. base.OnCreateControl();
  136. if (IsReion)
  137. {
  138. SetReion();//需要圆角时开启
  139. }
  140. }
  141. //圆角
  142. private void SetReion()
  143. {
  144. using (GraphicsPath path =
  145. GraphicsPathHelper.CreatePath(
  146. new Rectangle(Point.Empty, base.Size), 6, RoundStyle.All, true))
  147. {
  148. Region region = new Region(path);
  149. path.Widen(Pens.White);
  150. region.Union(path);
  151. this.Region = region;
  152. }
  153. }
  154. //改变窗体大小时
  155. protected override void OnSizeChanged(EventArgs e)
  156. {
  157. base.OnSizeChanged(e);
  158. if (IsReion)
  159. {
  160. SetReion();//需要圆角时开启
  161. }
  162. if (!this._isFullScreen)
  163. {
  164. this.MaximumSize = new Size(Screen.PrimaryScreen.WorkingArea.Width, Screen.PrimaryScreen.WorkingArea.Height);
  165. }
  166. //else {
  167. // this.MaximumSize = new Size(0,0);
  168. //}
  169. }
  170. /// <summary>
  171. /// 设置窗体最大化和还原状态
  172. /// </summary>
  173. public void SetWindowState()
  174. {
  175. if (IsMaximized)
  176. {
  177. if (this.MaximizeBox && this.MinimizeBox)
  178. {
  179. if (this.WindowState == FormWindowState.Normal)
  180. {
  181. this.WindowState = FormWindowState.Maximized;
  182. }
  183. else
  184. {
  185. this.WindowState = FormWindowState.Normal;
  186. }
  187. }
  188. }
  189. }
  190. #region 重写CreateParams
  191. protected override CreateParams CreateParams
  192. {
  193. get
  194. {
  195. try
  196. {
  197. const int WS_MINIMIZEBOX = 0x00020000; // Winuser.h中定义
  198. CreateParams cp = base.CreateParams;
  199. cp.Style = cp.Style | WS_MINIMIZEBOX; // 允许最小化操作
  200. return cp;
  201. }
  202. catch
  203. {
  204. return base.CreateParams;
  205. }
  206. }
  207. }
  208. #endregion
  209. #region 窗体可调大小
  210. const int Guying_HTLEFT = 10;
  211. const int Guying_HTRIGHT = 11;
  212. const int Guying_HTTOP = 12;
  213. const int Guying_HTTOPLEFT = 13;
  214. const int Guying_HTTOPRIGHT = 14;
  215. const int Guying_HTBOTTOM = 15;
  216. const int Guying_HTBOTTOMLEFT = 0x10;
  217. const int Guying_HTBOTTOMRIGHT = 17;
  218. protected override void WndProc(ref Message m)
  219. {
  220. if (IsUserControlsSize)
  221. {
  222. switch (m.Msg)
  223. {
  224. case 0x0084:
  225. base.WndProc(ref m);
  226. Point vPoint = new Point((int)m.LParam & 0xFFFF,
  227. (int)m.LParam >> 16 & 0xFFFF);
  228. vPoint = PointToClient(vPoint);
  229. if (vPoint.X <= 5)
  230. if (vPoint.Y <= 5)
  231. m.Result = (IntPtr)Guying_HTTOPLEFT;
  232. else if (vPoint.Y >= ClientSize.Height - 5)
  233. m.Result = (IntPtr)Guying_HTBOTTOMLEFT;
  234. else m.Result = (IntPtr)Guying_HTLEFT;
  235. else if (vPoint.X >= ClientSize.Width - 5)
  236. if (vPoint.Y <= 5)
  237. m.Result = (IntPtr)Guying_HTTOPRIGHT;
  238. else if (vPoint.Y >= ClientSize.Height - 5)
  239. m.Result = (IntPtr)Guying_HTBOTTOMRIGHT;
  240. else m.Result = (IntPtr)Guying_HTRIGHT;
  241. else if (vPoint.Y <= 5)
  242. m.Result = (IntPtr)Guying_HTTOP;
  243. else if (vPoint.Y >= ClientSize.Height - 5)
  244. m.Result = (IntPtr)Guying_HTBOTTOM;
  245. break;
  246. case 0x0201: //鼠标左键按下的消息
  247. m.Msg = 0x00A1; //更改消息为非客户区按下鼠标
  248. m.LParam = IntPtr.Zero; //默认值
  249. m.WParam = new IntPtr(2);//鼠标放在标题栏内
  250. base.WndProc(ref m);
  251. break;
  252. default:
  253. base.WndProc(ref m);
  254. break;
  255. }
  256. }
  257. else {
  258. base.WndProc(ref m);
  259. }
  260. }
  261. #endregion
  262. }
  263. }