F_MST_1301.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*******************************************************************************
  2. * Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential
  3. * 类的信息:
  4. * 1.程序名称:F_MST_1301.cs
  5. * 2.功能描述:产品档案
  6. * 编辑履历:
  7. * 作者 日期 版本 修改内容
  8. * 庄天威 2014/09/13 1.00 新建
  9. *******************************************************************************/
  10. using System;
  11. using System.Data;
  12. using System.Windows.Forms;
  13. using Dongke.IBOSS.PRD.Basics.BaseResources;
  14. using Dongke.IBOSS.PRD.Basics.DockPanel;
  15. using Dongke.IBOSS.PRD.Client.CommonModule;
  16. using Dongke.IBOSS.PRD.WCF.DataModels;
  17. using Dongke.IBOSS.PRD.WCF.Proxys;
  18. namespace Dongke.IBOSS.PRD.Client.SystemModule
  19. {
  20. /// <summary>
  21. /// 产品档案
  22. /// </summary>
  23. public partial class F_MST_1301 : DockPanelBase
  24. {
  25. #region 成员变量
  26. private static F_MST_1301 _instance; //单例模式
  27. #endregion
  28. #region 构造函数
  29. public F_MST_1301()
  30. {
  31. InitializeComponent();
  32. }
  33. #endregion
  34. #region 单例模式
  35. /// <summary>
  36. /// 单例模式,防止重复创建窗体
  37. /// </summary>
  38. public static F_MST_1301 Instance
  39. {
  40. get
  41. {
  42. if (_instance == null)
  43. {
  44. _instance = new F_MST_1301();
  45. }
  46. return _instance;
  47. }
  48. }
  49. #endregion
  50. #region 事件
  51. /// <summary>
  52. /// 窗体加载
  53. /// </summary>
  54. private void F_MST_1301_Load(object sender, EventArgs e)
  55. {
  56. try
  57. {
  58. }
  59. catch (Exception ex)
  60. {
  61. // 对异常进行共通处理
  62. ExceptionManager.HandleEventException(this.ToString(),
  63. System.Reflection.MethodBase.GetCurrentMethod().Name, this.Text, ex);
  64. }
  65. }
  66. #endregion
  67. #region 私有方法
  68. #endregion
  69. }
  70. }