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();
}
///
/// 树双击节点事件(往选择人员列表添加)
///
///
///
protected virtual void treevOrdersPersonnel_NodeMouseDoubleClick(object sender, TreeNodeMouseClickEventArgs e)
{
//throw new NotImplementedException();
}
///
/// 已选择人员双击事(从已选择表中去除)
///
///
///
protected virtual void dgvData_MouseDoubleClick(object sender, MouseEventArgs e)
{
//throw new NotImplementedException();
}
///
/// 往选择人员列表添加
///
///
///
protected virtual void btnLeft_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 从已选择表中去除
///
///
///
protected virtual void btnRight_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 确定
///
///
///
protected virtual void btnOK_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 取消
///
///
///
protected virtual void btnCancel_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 点击已选择人员
///
///
///
protected virtual void dgvData_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 上下键选择已选择人员
///
///
///
protected virtual void dgvData_KeyUp(object sender, KeyEventArgs e)
{
//throw new NotImplementedException();
}
}
}