BaseForm360.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using System.Drawing.Drawing2D;
  10. using System.Globalization;
  11. namespace LYFZ.ComponentLibrary
  12. {
  13. public partial class BaseForm360 : BaseShadowForm
  14. {
  15. public BaseForm360()
  16. {
  17. InitializeComponent();
  18. this.btnAppFormExit.Click += new EventHandler(btnAppFormExit_Click);
  19. this.btnAppFormMaximize.Click += new EventHandler(btnAppFormMaximize_Click);
  20. this.btnAppFormMaximize.Move += new EventHandler(btnAppFormMaximize_Move);
  21. this.btnAppFormMinimize.Click += new EventHandler(btnAppFormMinimize_Click);
  22. SetBtuList();
  23. if (this.IsMaximized)
  24. {
  25. this.btnAppFormMinimize.Enabled = true;
  26. }
  27. else
  28. {
  29. this.btnAppFormMinimize.Enabled = false;
  30. }
  31. }
  32. protected virtual void btnAppFormMaximize_Move(object sender, EventArgs e)
  33. {
  34. SetFormMzximizeBtn(this.WindowState);
  35. }
  36. /// <summary>
  37. /// 设置最大化按钮状态
  38. /// </summary>
  39. /// <param name="stat"></param>
  40. protected void SetFormMzximizeBtn(FormWindowState stat)
  41. {
  42. if (stat == FormWindowState.Normal)
  43. {
  44. this.btnAppFormMaximize.BackImg = LYFZ.ComponentLibrary.Properties.Resources.btn_max;
  45. toolTipMessage.SetToolTip(this.btnAppFormMaximize, "最大化");
  46. }
  47. else
  48. {
  49. this.btnAppFormMaximize.BackImg = LYFZ.ComponentLibrary.Properties.Resources.btn_restore;
  50. toolTipMessage.SetToolTip(this.btnAppFormMaximize, "还原");
  51. }
  52. }
  53. protected void btnAppFormMinimize_Click(object sender, EventArgs e)
  54. {
  55. if (IsMinimize)
  56. {
  57. this.WindowState = FormWindowState.Minimized;
  58. }
  59. }
  60. protected void btnAppFormMaximize_Click(object sender, EventArgs e)
  61. {
  62. SetWindowState();
  63. }
  64. protected void btnAppFormExit_Click(object sender, EventArgs e)
  65. {
  66. if (IsCloseForm)
  67. {
  68. this.Close();
  69. }
  70. }
  71. /// <summary>
  72. /// 设置窗体标题
  73. /// </summary>
  74. /// <param name="e"></param>
  75. public void SetFormTitle(Graphics g)
  76. {
  77. try
  78. {
  79. Bitmap bit = this.Icon.ToBitmap();
  80. Rectangle r1, r2;
  81. r1 = new Rectangle(3, 3, 24, 24);
  82. r2 = new Rectangle(0, 0, bit.Width, bit.Height);
  83. g.DrawImage(bit, r1, r2, GraphicsUnit.Pixel);
  84. Font fn = new Font("微软雅黑", 9, System.Drawing.FontStyle.Bold);//控件字体
  85. g.DrawString(this.Text, fn, new SolidBrush(Color.White), r1.Width + 3, 3);
  86. }
  87. catch
  88. {
  89. }
  90. }
  91. #region 属性设置
  92. bool _isCloseForm = true;
  93. /// <summary>
  94. /// 是否允许关闭窗体
  95. /// </summary>
  96. [Browsable(false), DescriptionAttribute("是否允许关闭窗体"), CategoryAttribute("自定义窗体属性")]
  97. public bool IsCloseForm
  98. {
  99. get { return _isCloseForm; }
  100. set { _isCloseForm = value; }
  101. }
  102. bool _isMinimize =true;
  103. /// <summary>
  104. /// 是否允许窗体最小化
  105. /// </summary>
  106. [Browsable(false), DescriptionAttribute("是否允许窗体最小化"), CategoryAttribute("自定义窗体属性")]
  107. public bool IsMinimize
  108. {
  109. get { return _isMinimize; }
  110. set {
  111. _isMinimize = value;
  112. //if (_isMinimize)
  113. //{
  114. // this.btnAppFormMinimize.Enabled = true;
  115. //}
  116. //else {
  117. // this.btnAppFormMinimize.Enabled = false;
  118. //}
  119. Invalidate(false);
  120. }
  121. }
  122. /// <summary>
  123. /// 重写Text属性
  124. /// </summary>
  125. [DescriptionAttribute("重写Text属性"), CategoryAttribute("自定义窗体属性")]
  126. public override string Text
  127. {
  128. set { base.Text = value; Invalidate(false); }
  129. get
  130. {
  131. return base.Text;
  132. }
  133. }
  134. bool _isShowBtnFormMenu = false;
  135. /// <summary>
  136. /// 是否显示菜单按钮
  137. /// </summary>
  138. [DescriptionAttribute("是否显示菜单按钮"), CategoryAttribute("自定义窗体属性"), DefaultValueAttribute(typeof(bool), "false")]
  139. public bool IsShowBtnFormMenu
  140. {
  141. get { return _isShowBtnFormMenu; }
  142. set { _isShowBtnFormMenu = value;
  143. Invalidate(false);
  144. }
  145. }
  146. bool _isShowBtnFormSkin = false;
  147. /// <summary>
  148. /// 是否显示皮肤设置按钮
  149. /// </summary>
  150. [DescriptionAttribute("是否显示皮肤设置按钮"), CategoryAttribute("自定义窗体属性"), DefaultValueAttribute(typeof(bool), "false")]
  151. public bool IsShowBtnFormSkin
  152. {
  153. get { return _isShowBtnFormSkin; }
  154. set { _isShowBtnFormSkin = value;
  155. Invalidate(false);
  156. }
  157. }
  158. bool _ShowBorder = true;
  159. /// <summary>
  160. /// 设置显示边框
  161. /// </summary>
  162. [DescriptionAttribute("设置显示边框"), CategoryAttribute("自定义窗体属性"), DefaultValueAttribute(typeof(bool), "true")]
  163. public bool ShowBorder
  164. {
  165. get { return _ShowBorder; }
  166. set { _ShowBorder = value; Invalidate(false); }
  167. }
  168. Bitmap _TitleBgImage = LYFZ.ComponentLibrary.Properties.Resources.BGimg0;
  169. /// <summary>
  170. /// 设置顶部标题背景图片
  171. /// </summary>
  172. [Browsable(true), DescriptionAttribute("设置顶部标题背景图片"), CategoryAttribute("自定义窗体属性")]
  173. public Bitmap TitleBgImage
  174. {
  175. get { return _TitleBgImage; }
  176. set { _TitleBgImage = value; Invalidate(false); }
  177. }
  178. int _TitleBgImageHeight = 100;
  179. /// <summary>
  180. /// 设置顶部标题栏高度
  181. /// </summary>
  182. [Browsable(true), DescriptionAttribute("设置顶部标题栏高度"), CategoryAttribute("自定义窗体属性")]
  183. public int TitleBgImageHeight
  184. {
  185. get { return _TitleBgImageHeight; }
  186. set { _TitleBgImageHeight = value; Invalidate(false); }
  187. }
  188. Bitmap _BottomBgImage = LYFZ.ComponentLibrary.Properties.Resources.BG1;
  189. /// <summary>
  190. /// 设置底部状态栏背景图片
  191. /// </summary>
  192. [Browsable(true), DescriptionAttribute("设置底部状态栏背景图片"), CategoryAttribute("自定义窗体属性")]
  193. public Bitmap BottomBgImage
  194. {
  195. get { return _BottomBgImage; }
  196. set { _BottomBgImage = value; Invalidate(false); }
  197. }
  198. int _BottomBgImageHeight = 25;
  199. /// <summary>
  200. /// 设置底部状态栏高度
  201. /// </summary>
  202. [Browsable(true), DescriptionAttribute("设置底部状态栏高度"), CategoryAttribute("自定义窗体属性")]
  203. public int BottomBgImageHeight
  204. {
  205. get { return _BottomBgImageHeight; }
  206. set { _BottomBgImageHeight = value; Invalidate(false); }
  207. }
  208. CustomBorderStyle _CustomBorderStyle = new CustomBorderStyle();
  209. /// <summary>
  210. /// 边框样式
  211. /// </summary>
  212. [Browsable(true), DescriptionAttribute("设置边框样式"), CategoryAttribute("自定义窗体属性"), TypeConverter(typeof(CustomBorderStyle))]
  213. [DesignerSerializationVisibility(DesignerSerializationVisibility.Content), NotifyParentProperty(true)]
  214. public CustomBorderStyle CustomBorderStyles
  215. {
  216. get { return _CustomBorderStyle; }
  217. set { _CustomBorderStyle = value; Invalidate(false); }
  218. }
  219. bool isShowCloseBox = true;
  220. /// <summary>
  221. /// 是否显示关闭按钮
  222. /// </summary>
  223. [Browsable(true), DescriptionAttribute("是否显示关闭按钮"), CategoryAttribute("自定义窗体属性")]
  224. public bool IsShowCloseBox
  225. {
  226. get { return isShowCloseBox; }
  227. set { isShowCloseBox = value; Invalidate(false); }
  228. }
  229. #region 自定义边框属性类
  230. [TypeConverter(typeof(CustomBorderStyle))]
  231. public class CustomBorderStyle : ExpandableObjectConverter
  232. {
  233. public CustomBorderStyle()
  234. {
  235. }
  236. public CustomBorderStyle(Color color, int width)
  237. {
  238. _BorderColor = color;
  239. _BorderWidth = width;
  240. }
  241. #region 重写转换方法
  242. /// <summary>
  243. /// 表示是否允许将给定类型的对象转换为自定义类型
  244. /// </summary>
  245. /// <param name="context">当前上下文对象</param>
  246. /// <param name="sourceType">给定的类型</param>
  247. /// <returns></returns>
  248. public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
  249. {
  250. //如果给定的类型为字符串,可以转换为自定义类型
  251. if (sourceType == typeof(string))
  252. {
  253. return true;
  254. }
  255. return base.CanConvertFrom(context, sourceType);
  256. }
  257. /// <summary>
  258. /// 表示是否允许将自定义类型转换为指定的类型
  259. /// </summary>
  260. /// <param name="context">当前上下文</param>
  261. /// <param name="destinationType">指定的类型</param>
  262. /// <returns></returns>
  263. public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
  264. {
  265. //如果目标类型是字符串,允许将自定义类型转换为字符串
  266. if (destinationType == typeof(string))
  267. {
  268. return true;
  269. }
  270. return base.CanConvertTo(context, destinationType);
  271. }
  272. /// <summary>
  273. /// 将指定类型转换为自定义类型
  274. /// </summary>
  275. /// <param name="context">当前上下文信息</param>
  276. /// <param name="culture">区域信息</param>
  277. /// <param name="value">指定类型</param>
  278. /// <returns></returns>
  279. public override object ConvertFrom(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value)
  280. {
  281. if (value == null)
  282. {
  283. return new CustomBorderStyle();
  284. }
  285. if (value is string)
  286. {
  287. string s = (string)value;
  288. if (s.Length == 0)
  289. {
  290. return new CustomBorderStyle();
  291. }
  292. string[] parts = s.Split(culture.TextInfo.ListSeparator[0]);
  293. if (parts.Length != 2)
  294. {
  295. throw new ArgumentException("输入的值转换无效", "value");
  296. }
  297. return new CustomBorderStyle(Color.FromName(parts[0]), Convert.ToInt16(parts[1]));
  298. }
  299. return base.ConvertFrom(context, culture, value);
  300. }
  301. /// <summary>
  302. /// 将自定义类型转换为指定类型
  303. /// </summary>
  304. /// <param name="context">当前上下文</param>
  305. /// <param name="culture">区域</param>
  306. /// <param name="value"></param>
  307. /// <param name="destinationType">指定类型</param>
  308. /// <returns></returns>
  309. public override object ConvertTo(ITypeDescriptorContext context, System.Globalization.CultureInfo culture, object value, Type destinationType)
  310. {
  311. //如果要转换为自定义类型
  312. if (destinationType == typeof(string))
  313. {
  314. if (value is CustomBorderStyle)
  315. {
  316. CustomBorderStyle cb = (CustomBorderStyle)value;
  317. TypeConverter stringConverter = TypeDescriptor.GetConverter(typeof(string));
  318. return String.Join(culture.TextInfo.ListSeparator,
  319. new string[] {
  320. stringConverter.ConvertToString(context, culture, cb.BorderColor.Name),
  321. stringConverter.ConvertToString(context, culture, cb.BorderWidth)
  322. });
  323. }
  324. else
  325. {
  326. throw new ArgumentException("类型转换失败,无效的 CustomBorderStyle 对象", "value");
  327. }
  328. }
  329. return base.ConvertTo(context, culture, value, destinationType);
  330. }
  331. #endregion
  332. Color _BorderColor = Color.Blue;
  333. int _BorderWidth = 1;
  334. /// <summary>
  335. /// 设置边框颜色
  336. /// </summary>
  337. [Browsable(true), DescriptionAttribute("设置边框颜色"), CategoryAttribute("自定义窗体属性"), NotifyParentProperty(true), DefaultValue(typeof(Color), "Blue")]
  338. public Color BorderColor
  339. {
  340. get { return _BorderColor; }
  341. set { _BorderColor = value; }
  342. }
  343. /// <summary>
  344. /// 设置边框线宽度
  345. /// </summary>
  346. [Browsable(true), DescriptionAttribute("设置边框线宽度"), CategoryAttribute("自定义窗体属性"), NotifyParentProperty(true), DefaultValue(1)]
  347. public int BorderWidth
  348. {
  349. get { return _BorderWidth; }
  350. set { _BorderWidth = value; }
  351. }
  352. }
  353. #endregion
  354. #endregion
  355. List<ButtonExpand> btnList = new List<ButtonExpand>();
  356. /// <summary>
  357. /// 添加按钮列表
  358. /// </summary>
  359. void SetBtuList()
  360. {
  361. btnList.Add(this.btnAppFormExit);
  362. btnList.Add(this.btnAppFormMaximize);
  363. btnList.Add(this.btnAppFormMinimize);
  364. btnList.Add(this.btnAppFormMenu);
  365. btnList.Add(this.btnAppFormSkin);
  366. }
  367. /// <summary>
  368. /// 设置按钮定位等
  369. /// </summary>
  370. void SetAppFormBtn()
  371. {
  372. try
  373. {
  374. int rightOffset = 5;
  375. int tempWidth = 0;
  376. for (int i = 0; i < btnList.Count; i++)
  377. {
  378. ButtonExpand tempBtn = btnList[i];
  379. if (tempBtn.Visible)
  380. {
  381. tempBtn.Location = new Point(this.Width - rightOffset - tempBtn.Width - tempWidth, 0);
  382. tempWidth += tempBtn.Width;
  383. }
  384. }
  385. }
  386. catch { }
  387. }
  388. /// <summary>
  389. /// 重写窗体
  390. /// </summary>
  391. /// <param name="sender"></param>
  392. /// <param name="e"></param>
  393. private void BaseForm360_Paint(object sender, PaintEventArgs e)
  394. {
  395. Bitmap bit_top = new Bitmap(_TitleBgImage);
  396. Bitmap bit_bottom = new Bitmap(_BottomBgImage);
  397. Rectangle r1, r2;
  398. r1 = new Rectangle(0, 0, bit_top.Width, _TitleBgImageHeight);
  399. r2 = new Rectangle(0, 0, bit_top.Width, _TitleBgImageHeight);
  400. Graphics g = e.Graphics;
  401. g.SmoothingMode = SmoothingMode.HighQuality; //高质量
  402. g.PixelOffsetMode = PixelOffsetMode.HighQuality; //高像素偏移质量
  403. for (int i = 0; i <= (this.Width / bit_top.Width); i++)
  404. {
  405. r1.X = bit_top.Width * i;
  406. g.DrawImage(bit_top, r1, r2, GraphicsUnit.Pixel);
  407. }
  408. r1 = new Rectangle(0, this.Height - _BottomBgImageHeight, bit_bottom.Width, _BottomBgImageHeight);
  409. r2 = new Rectangle(0, 0, bit_bottom.Width, _BottomBgImageHeight);
  410. for (int i = 0; i <= (this.Width / bit_bottom.Width); i++)
  411. {
  412. r1.X = bit_bottom.Width * i;
  413. g.DrawImage(bit_top, r1, r2, GraphicsUnit.Pixel);
  414. }
  415. if (ShowBorder)
  416. {
  417. //重绘 边线 边线颜色
  418. Pen p = new Pen(CustomBorderStyles.BorderColor);
  419. p.Width = CustomBorderStyles.BorderWidth;
  420. e.Graphics.DrawRectangle(p, 0, 0, this.Width - 1, this.Height - 1);
  421. }
  422. //// Label lb=this.Controls["lbMseg"] as Label;
  423. try
  424. {
  425. if (!this.MinimizeBox)
  426. {
  427. this.btnAppFormMinimize.Visible = false;
  428. this.btnAppFormMaximize.Visible = false;
  429. }
  430. else
  431. {
  432. this.btnAppFormMinimize.Visible = true;
  433. if (this.MaximizeBox) { this.btnAppFormMaximize.Visible = true; }
  434. else
  435. {
  436. this.btnAppFormMaximize.Visible = false;
  437. }
  438. }
  439. if (!this.IsShowBtnFormMenu)
  440. {
  441. this.btnAppFormMenu.Visible = false;
  442. }
  443. else
  444. {
  445. this.btnAppFormMenu.Visible = true;
  446. }
  447. if (!this.IsShowBtnFormSkin)
  448. {
  449. this.btnAppFormSkin.Visible = false;
  450. }
  451. else
  452. {
  453. // this.btnAppFormSkin.Visible = true;//启用主题切换
  454. this.btnAppFormSkin.Visible = false;//禁用主题切换
  455. }
  456. if (IsShowCloseBox)
  457. {
  458. this.btnAppFormExit.Visible = true;
  459. }
  460. else
  461. {
  462. this.btnAppFormExit.Visible = false;
  463. }
  464. SetAppFormBtn();
  465. }
  466. catch {
  467. }
  468. SetFormTitle(e.Graphics);//设置标题
  469. }
  470. }
  471. }