123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- using LYFZ.ComponentLibrary;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.Software.UI.FinancialManagement.OrdersReceivables
- {
- public partial class FrmSelectPayOpenSingle : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmSelectPayOpenSingle()
- {
- InitializeComponent();
- this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor;
- this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- this.panelEx2.BorderStyle = BorderStyle.FixedSingle;
- this.dgvData.RefreshTheme();
- this.labelEx1.ForeColor = UIBlueThemeResources.TitleTextColor;
- this.panelEx3.BackColor = UIBlueThemeResources.ProductSelectTitleBackgroundColor;
- this.labelEx3.ForeColor = UIBlueThemeResources.DefaultReverseTextColor;
-
- this.treevOrdersPersonnel.NodeMouseDoubleClick += new TreeNodeMouseClickEventHandler(treevOrdersPersonnel_NodeMouseDoubleClick);
- this.dgvData.MouseDoubleClick += dgvData_MouseDoubleClick;
- this.btnLeft.Click += new EventHandler(btnLeft_Click);
- this.btnRight.Click += new EventHandler(btnRight_Click);
- this.btnOK.Click += new EventHandler(btnOK_Click);
- this.btnCancel.Click += new EventHandler(btnCancel_Click);
- this.dgvData.Click += dgvData_Click;
- this.dgvData.KeyUp += dgvData_KeyUp;
- this.Shown += FrmSelectPayOpenSingle_Shown;
- this.dgvData.CellValueChanged += dgvData_CellValueChanged;
- }
- protected virtual void dgvData_CellValueChanged(object sender, DataGridViewCellEventArgs e)
- {
- // throw new NotImplementedException();
- }
- protected virtual void FrmSelectPayOpenSingle_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
-
- /// <summary>
- /// 树双击节点事件(往选择人员列表添加)
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void treevOrdersPersonnel_NodeMouseDoubleClick(object sender, TreeNodeMouseClickEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 已选择人员双击事(从已选择表中去除)
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void dgvData_MouseDoubleClick(object sender, MouseEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 往选择人员列表添加
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnLeft_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 从已选择表中去除
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnRight_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnOK_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnCancel_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 点击已选择人员
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void dgvData_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 上下键选择已选择人员
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void dgvData_KeyUp(object sender, KeyEventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|