/******************************************************************************* * Copyright(c) 2019 DongkeSoft All rights reserved. / Confidential * 类的信息: * 1.程序名称:F_PP_0110.cs * 2.功能描述:年计划自由比对 * 编辑履历: * 作者 日期 版本 修改内容 * 徐伟 2019/08/27 1.00 新建 *******************************************************************************/ using System; using System.Collections.Generic; using System.Data; using System.Reflection; using System.Windows.Forms; using Dongke.IBOSS.PRD.Basics.BaseResources; using Dongke.IBOSS.PRD.Client.CommonModule; using Dongke.IBOSS.PRD.Client.Controls; using Dongke.IBOSS.PRD.Client.DataModels; using Dongke.IBOSS.PRD.WCF.DataModels; using Dongke.IBOSS.PRD.WCF.Proxys; namespace Dongke.IBOSS.PRD.Client.PPModule { /// /// 年计划窗体 /// public partial class F_PP_0110 : DKDockPanelBase { #region 单例模式 防止窗体被重复创建 private static F_PP_0110 _instance = null; public static F_PP_0110 Instance { get { if (_instance == null) { _instance = new F_PP_0110(); } return _instance; } } private void F_PP_0110_FormClosed(object sender, FormClosedEventArgs e) { _instance = null; } #endregion #region 构造函数 /// /// 年计划窗体 /// public F_PP_0110() { InitializeComponent(); //this.Text = "年计划"; } #endregion /// /// 画面加载 /// /// /// private void F_PP_0110_Load(object sender, System.EventArgs e) { try { // 加载权限 FormPermissionManager.FormPermissionControl(this.Name, this, LogInUserInfo.CurrentUser.CurrentUserEntity.UserRightData, LogInUserInfo.CurrentUser.CurrentUserEntity.FunctionData); } catch (Exception ex) { // 对异常进行共通处理 ExceptionManager.HandleEventException(this.ToString(), MethodBase.GetCurrentMethod().Name, this.Text, ex); } } /// /// 关闭画面 /// /// /// private void tsbtnClose_Click(object sender, EventArgs e) { this.Close(); } /// /// 获取数据 /// private void TsbtnSearch_Click(object sender, EventArgs e) { } /// /// 清空条件 /// private void TsbtnClearCondition_Click(object sender, EventArgs e) { } private void BtnSearch_Click(object sender, EventArgs e) { } } }