2deefed755e75bf30915bc316c0a81eddf0a106f.svn-base 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. namespace Core.Mes.ClientFrameWork
  7. {
  8. /// <summary>
  9. /// Core Mes 平台所有业务子窗体的基类
  10. /// </summary>
  11. public class FrmBase : System.Windows.Forms.Form
  12. {
  13. private System.ComponentModel.IContainer components;
  14. public FrmBase()
  15. {
  16. //
  17. // Windows 窗体设计器支持所必需的
  18. //
  19. InitializeComponent();
  20. //
  21. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  22. //
  23. }
  24. /// <summary>
  25. /// 清理所有正在使用的资源。
  26. /// </summary>
  27. protected override void Dispose( bool disposing )
  28. {
  29. if( disposing )
  30. {
  31. if(components != null)
  32. {
  33. components.Dispose();
  34. }
  35. }
  36. base.Dispose( disposing );
  37. }
  38. #region Windows 窗体设计器生成的代码
  39. /// <summary>
  40. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  41. /// 此方法的内容。
  42. /// </summary>
  43. private void InitializeComponent()
  44. {
  45. this.SuspendLayout();
  46. //
  47. // FrmBase
  48. //
  49. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  50. this.ClientSize = new System.Drawing.Size(1012, 733);
  51. this.Name = "FrmBase";
  52. this.Text = "FrmBase";
  53. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  54. this.ResumeLayout(false);
  55. }
  56. #endregion
  57. #region " RemotingGate "
  58. public string Key = "";
  59. public bool On_Off_Thread = false;
  60. public Form _ParentForm;
  61. #endregion
  62. }
  63. }