BaseContentsFormMain.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  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. namespace LYFZ.ComponentLibrary
  10. {
  11. /// <summary>
  12. /// 所有内容窗体的基窗体
  13. /// </summary>
  14. public partial class BaseContentsFormMain : BaseFormRelease, LYFZ.StandardInterface.IFormMain
  15. {
  16. public BaseContentsFormMain()
  17. {
  18. InitializeComponent();
  19. this.ctlScrollBarH.Scroll += new EventHandler(ctlScrollBarH_Scroll);
  20. this.ctlScrollBarV.Scroll += new EventHandler(ctlScrollBarV_Scroll);
  21. this.plExMainContainer.Resize += new EventHandler(plExMainContainer_Resize);
  22. this.plFormMainContent.Resize += new EventHandler(plFormMainContent_Resize);
  23. this.Resize += new EventHandler(BaseContentsFormRelease_Resize);
  24. this.Shown += new EventHandler(BaseContentsFormRelease_Shown);
  25. this.isOverrideOnPaint = true;
  26. IsCustomScrollBar = false;
  27. this.plExMainContainer.MouseWheel += new MouseEventHandler(plExMainContainer_MouseWheel);
  28. this.ctlScrollBarV.MouseWheel += new MouseEventHandler(ctlScrollBarV_MouseWheel);
  29. }
  30. /// <summary>
  31. /// 重载新窗体
  32. /// </summary>
  33. /// <param name="objNewForm"></param>
  34. public void ReloadNewForm(object objNewForm)
  35. {
  36. LYFZ.ComponentLibrary.BaseContentsFormMain frm = (LYFZ.ComponentLibrary.BaseContentsFormMain)objNewForm;
  37. frm.TopLevel = this.TopLevel;
  38. frm.IsShadow = this.IsShadow;
  39. frm.MaximizeBox = this.MaximizeBox;
  40. frm.MinimizeBox = this.MinimizeBox;
  41. frm.IsShowCloseBox = this.IsShowCloseBox;
  42. frm.TitleBgImageHeight = this.TitleBgImageHeight;
  43. frm.BottomBgImageHeight = this.BottomBgImageHeight;
  44. frm.IsMaximized = this.IsMaximized;
  45. frm.FormMobile = this.FormMobile;
  46. frm.IsUserControlsSize = this.IsUserControlsSize;
  47. frm.Dock = this.Dock;
  48. frm.IsCustomScrollBar = this.IsCustomScrollBar;
  49. frm.Parent = this.Parent;
  50. frm.IsShowBtnFormMenu = this.IsShowBtnFormMenu;
  51. frm.IsShowBtnFormSkin = this.IsShowBtnFormMenu;
  52. frm.IsCloseForm = this.IsCloseForm;
  53. frm.IsMinimize = this.IsMinimize;
  54. if (!frm.IsMaximized && !frm.IsMinimize && !frm.IsCloseForm)
  55. {
  56. frm.SetCoverageTitleButtonEvent();
  57. }
  58. frm.Show();
  59. this.Close();
  60. this.Dispose();
  61. }
  62. /// <summary>
  63. /// 设置发生错误时显示信息
  64. /// </summary>
  65. /// <param name="msg"></param>
  66. public void SetError(string msg)
  67. {
  68. LabelEx tryLabMsg = new LabelEx();
  69. tryLabMsg.Text = msg;
  70. tryLabMsg.ForeColor =Color.Red;
  71. tryLabMsg.Font = new System.Drawing.Font("宋体", 12);
  72. tryLabMsg.Padding = new Padding(10);
  73. tryLabMsg.Dock = DockStyle.Fill;
  74. this.plExMainContainer.Controls.Add(tryLabMsg);
  75. }
  76. /// <summary>
  77. /// 公共plExMainContainer对象
  78. /// </summary>
  79. // public LYFZ.ComponentLibrary.PanelEx PublicContainer = null;
  80. /// <summary>
  81. /// 系统菜单事件接口
  82. /// </summary>
  83. public LYFZ.StandardInterface.IMenuClick iMenuClick = null;
  84. /// <summary>
  85. /// 覆盖窗体标题栏上最小化、最大化和关闭按钮的事件
  86. /// </summary>
  87. public void SetCoverageTitleButtonEvent()
  88. {
  89. this.btnAppFormExit.Click += new EventHandler(ParentFormBtnAppFormExit_Click);
  90. this.btnAppFormMaximize.Click += new EventHandler(ParentFormBtnAppFormMaximize_Click);
  91. this.btnAppFormMinimize.Click += new EventHandler(ParentFormBtnAppFormMinimize_Click);
  92. isCoverageTitleButtonEvent = true;
  93. }
  94. bool isCoverageTitleButtonEvent = false;
  95. protected override void btnAppFormMaximize_Move(object sender, EventArgs e)
  96. {
  97. if (isCoverageTitleButtonEvent)
  98. {
  99. this.SetFormMzximizeBtn(this.ParentForm.WindowState);
  100. }
  101. else
  102. {
  103. base.btnAppFormMaximize_Move(sender, e);
  104. }
  105. }
  106. /// <summary>
  107. /// 最小化父窗体
  108. /// </summary>
  109. /// <param name="sender"></param>
  110. /// <param name="e"></param>
  111. protected virtual void ParentFormBtnAppFormMinimize_Click(object sender, EventArgs e)
  112. {
  113. this.ParentForm.WindowState = FormWindowState.Minimized;
  114. }
  115. /// <summary>
  116. /// 最大化父窗体
  117. /// </summary>
  118. /// <param name="sender"></param>
  119. /// <param name="e"></param>
  120. protected virtual void ParentFormBtnAppFormMaximize_Click(object sender, EventArgs e)
  121. {
  122. if (this.ParentForm.WindowState == FormWindowState.Normal)
  123. {
  124. this.ParentForm.WindowState = FormWindowState.Maximized;
  125. }
  126. else {
  127. this.ParentForm.WindowState = FormWindowState.Normal;
  128. }
  129. }
  130. /// <summary>
  131. /// 关闭父窗体
  132. /// </summary>
  133. /// <param name="sender"></param>
  134. /// <param name="e"></param>
  135. protected virtual void ParentFormBtnAppFormExit_Click(object sender, EventArgs e)
  136. {
  137. this.ParentForm.Close();
  138. }
  139. #region 滚动轮滚动时滚动窗体
  140. /// <summary>
  141. /// 获取滚动轮滚动的值
  142. /// </summary>
  143. /// <param name="e"></param>
  144. /// <returns></returns>
  145. int getMouseWheelDelta(MouseEventArgs e)
  146. {
  147. // this.Text = this.ctlScrollBarV.Maximum + "/" + this.ctlScrollBarV.LargeChange.ToString() + "*" + ctlScrollBarV.Value;
  148. //e.Delta 在正负 120 之间
  149. //滚动条要滚动的值在 0 到 this.ctlScrollBarV.Maximum - this.ctlScrollBarV.LargeChange 之间
  150. int tempDelta = -(e.Delta);
  151. if (tempDelta < this.ctlScrollBarV.Minimum)
  152. {
  153. tempDelta = this.ctlScrollBarV.Minimum;
  154. }
  155. int tempDifference = this.ctlScrollBarV.Maximum - this.ctlScrollBarV.LargeChange;
  156. int tempScrollBar = tempDifference / 120;
  157. if (tempScrollBar <= 0)
  158. {
  159. tempScrollBar = 1;
  160. }
  161. if (tempDelta == 120)
  162. {
  163. tempDelta = tempDifference;
  164. }
  165. else
  166. {
  167. tempDelta = tempDelta * tempScrollBar;
  168. if (tempDelta > tempDifference)
  169. {
  170. tempDelta = tempDifference;
  171. }
  172. }
  173. return tempDelta;
  174. }
  175. void ctlScrollBarV_MouseWheel(object sender, MouseEventArgs e)
  176. {
  177. this.ctlScrollBarV.Value = getMouseWheelDelta(e);
  178. //垂直滚动
  179. scrollY = ctlScrollBarV.Value;
  180. this.plExMainContainer.AutoScrollPosition = new Point(scrollX, ctlScrollBarV.Value);
  181. }
  182. void plExMainContainer_MouseWheel(object sender, MouseEventArgs e)
  183. {
  184. this.ctlScrollBarV.Value = getMouseWheelDelta(e);
  185. //垂直滚动
  186. scrollY = ctlScrollBarV.Value;
  187. }
  188. #endregion
  189. /// <summary>
  190. /// 记录滚动条显示时需要的宽度
  191. /// </summary>
  192. int PanlOffset = 0;
  193. /// <summary>
  194. /// 首次显示时
  195. /// </summary>
  196. /// <param name="sender"></param>
  197. /// <param name="e"></param>
  198. void BaseContentsFormRelease_Shown(object sender, EventArgs e)
  199. {
  200. if (IsCustomScrollBar)
  201. {
  202. PanlOffset = 20;
  203. }
  204. ResetControls();
  205. }
  206. /// <summary>
  207. /// 窗体大小变化时
  208. /// </summary>
  209. /// <param name="sender"></param>
  210. /// <param name="e"></param>
  211. void BaseContentsFormRelease_Resize(object sender, EventArgs e)
  212. {
  213. isSetplExMainContainerFocus = true;
  214. ResetControls();
  215. }
  216. /// <summary>
  217. /// 父panl大小变化时
  218. /// </summary>
  219. /// <param name="sender"></param>
  220. /// <param name="e"></param>
  221. void plFormMainContent_Resize(object sender, EventArgs e)
  222. {
  223. isSetplExMainContainerFocus = true;
  224. ResetControls();
  225. }
  226. /// <summary>
  227. /// 子panl大小变化时
  228. /// </summary>
  229. /// <param name="sender"></param>
  230. /// <param name="e"></param>
  231. void plExMainContainer_Resize(object sender, EventArgs e)
  232. {
  233. if (!this.TopLevel)
  234. {
  235. ResetControls();
  236. }
  237. isSetplExMainContainerFocus = true;
  238. }
  239. /// <summary>
  240. /// 重设相关控件
  241. /// </summary>
  242. void ResetControls()
  243. {
  244. SetplExMainContainerSize(PanlOffset);
  245. SetScrollBarAttr();
  246. InitializeScrollBar();
  247. }
  248. //两个变量记录水平或垂直方向的滚动条位置,已达到同步效果
  249. int scrollX = 0;
  250. int scrollY = 0;
  251. bool isShowCtlScrollBarV = false;//记录是否显示垂直滚动条
  252. bool isShowCtlScrollBarH = false;//记录日否显示水平滚动条
  253. void ctlScrollBarV_Scroll(object sender, EventArgs e)
  254. {
  255. //垂直滚动
  256. scrollY = ctlScrollBarV.Value;
  257. this.plExMainContainer.AutoScrollPosition = new Point(scrollX, ctlScrollBarV.Value);
  258. }
  259. void ctlScrollBarH_Scroll(object sender, EventArgs e)
  260. {
  261. //水平滚动
  262. scrollX = ctlScrollBarH.Value;
  263. this.plExMainContainer.AutoScrollPosition = new Point(ctlScrollBarH.Value, scrollY);
  264. }
  265. /// <summary>
  266. /// 重绘控件
  267. /// </summary>
  268. /// <param name="e"></param>
  269. protected override void OnPaint(System.Windows.Forms.PaintEventArgs e)
  270. {
  271. base.OnPaint(e);
  272. SetplExMainContainerSize(PanlOffset);
  273. }
  274. /// <summary>
  275. /// 设置内容容器的大小和位置
  276. /// </summary>
  277. public void SetplExMainContainerSize(int offset = 0)
  278. {
  279. //父panl大小和位置
  280. this.plFormMainContent.Location = new Point(0, this.TitleBgImageHeight);
  281. //子panl大小和位置
  282. isShowCtlScrollBarH = this.plExMainContainer.HorizontalScroll.Visible;
  283. isShowCtlScrollBarV = this.plExMainContainer.VerticalScroll.Visible;
  284. if (IsCustomScrollBar)
  285. {
  286. if (isShowCtlScrollBarV)
  287. {
  288. this.ctlScrollBarV.Visible = true;
  289. this.plFormMainContent.Width = this.Width - offset;
  290. this.plExMainContainer.Width = this.plFormMainContent.Width + offset - 4;
  291. }
  292. else
  293. {
  294. this.ctlScrollBarV.Visible = false;
  295. this.plFormMainContent.Width = this.Width;
  296. this.plExMainContainer.Width = this.plFormMainContent.Width;
  297. }
  298. if (isShowCtlScrollBarH)
  299. {
  300. this.ctlScrollBarH.Visible = true;
  301. this.plFormMainContent.Height = this.Height - this.TitleBgImageHeight - this.BottomBgImageHeight - offset;
  302. this.plExMainContainer.Height = this.plFormMainContent.Height + offset - 4;
  303. }
  304. else
  305. {
  306. this.ctlScrollBarH.Visible = false;
  307. this.plFormMainContent.Height = this.Height - this.TitleBgImageHeight - this.BottomBgImageHeight;
  308. this.plExMainContainer.Height = this.plFormMainContent.Height;
  309. }
  310. }
  311. else
  312. {
  313. this.plFormMainContent.Width = this.Width;
  314. this.plFormMainContent.Height = this.Height - this.TitleBgImageHeight - this.BottomBgImageHeight;
  315. this.plExMainContainer.Width = this.plFormMainContent.Width;
  316. this.plExMainContainer.Height = this.plFormMainContent.Height;
  317. }
  318. }
  319. /// <summary>
  320. /// 初始化滚动条
  321. /// </summary>
  322. public void InitializeScrollBar()
  323. {
  324. this.plExMainContainer.AutoScrollPosition = new Point(scrollX, scrollY);
  325. this.ctlScrollBarV.Minimum = 0;
  326. this.ctlScrollBarV.Maximum = this.plExMainContainer.DisplayRectangle.Height;
  327. this.ctlScrollBarV.LargeChange = ctlScrollBarV.Maximum / ctlScrollBarV.Height + this.plExMainContainer.Height - 20;
  328. this.ctlScrollBarV.Value = Math.Abs(this.plExMainContainer.AutoScrollPosition.Y);
  329. this.ctlScrollBarH.Minimum = 0;
  330. this.ctlScrollBarH.Maximum = this.plExMainContainer.DisplayRectangle.Width;
  331. this.ctlScrollBarH.LargeChange = ctlScrollBarH.Maximum / ctlScrollBarH.Width + this.plExMainContainer.Width - 20;
  332. this.ctlScrollBarH.Value = Math.Abs(this.plExMainContainer.AutoScrollPosition.X);
  333. }
  334. /// <summary>
  335. /// 设置滚动条属性
  336. /// </summary>
  337. void SetScrollBarAttr()
  338. {
  339. if (IsCustomScrollBar)
  340. {
  341. this.ctlScrollBarV.Location = new Point(this.plFormMainContent.Width, this.plFormMainContent.Location.Y);
  342. this.ctlScrollBarH.Location = new Point(0, this.plFormMainContent.Location.Y + this.plFormMainContent.Height);
  343. this.ctlScrollBarV.Size = new Size(this.ctlScrollBarV.Width, this.plFormMainContent.Height);
  344. this.ctlScrollBarH.Size = new Size(this.plFormMainContent.Width, this.ctlScrollBarH.Height);
  345. scrollX = this.ctlScrollBarH.Value;
  346. scrollY = this.ctlScrollBarV.Value;
  347. }
  348. }
  349. bool isCustomScrollBar = false;
  350. /// <summary>
  351. /// 设置是否使用自定义滚动条
  352. /// </summary>
  353. [Browsable(false), Category("自定义窗体属性"), Description("设置是否使用自定义滚动条")]
  354. public bool IsCustomScrollBar
  355. {
  356. get { return isCustomScrollBar; }
  357. set { isCustomScrollBar = value; }
  358. }
  359. private bool isSetplExMainContainerFocus = true;
  360. private void plExMainContainer_MouseEnter(object sender, EventArgs e)
  361. {
  362. if (isSetplExMainContainerFocus)
  363. this.plExMainContainer.Focus();
  364. isSetplExMainContainerFocus = false;
  365. }
  366. }
  367. }