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.MembershipManage.SetSmallForm { public partial class DataSetServicePackageContentSetSetSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain { public DataSetServicePackageContentSetSetSmallForm() { InitializeComponent(); this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor; this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor; this.panelEx1.BorderStyle = BorderStyle.FixedSingle; this.lbl5.ForeColor = UIBlueThemeResources.ClassTitleTextColor; this.Shown += DataSetServicePackageContentSetSetSmallForm_Shown; this.cmbtreevClass.TextChanged += cmbtreevClass_TextChanged; this.btnAdd.Click += btnAdd_Click; this.btnDelete.Click += btnDelete_Click; this.btnSet.Click += btnSet_Click; this.btnSave.Click += btnSave_Click; this.dgvData.RowsRemoved += dgvData_RowsRemoved; this.dgvData.RowsAdded += dgvData_RowsAdded; this.dgvData.CellMouseDoubleClick += dgvData_CellMouseDoubleClick; this.txtCount.Leave += txtCount_Leave; this.txtCount.KeyPress += txtCount_KeyPress; } /// /// 加载事件 /// /// /// protected virtual void DataSetServicePackageContentSetSetSmallForm_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 类别选择 /// /// /// protected virtual void cmbtreevClass_TextChanged(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 服务工具箱 /// /// /// protected virtual void btnAdd_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 删除 /// /// /// protected virtual void btnDelete_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 设置 /// /// /// protected virtual void btnSet_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 保存 /// /// /// protected virtual void btnSave_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 列表有添加行事件 /// /// /// protected virtual void dgvData_RowsRemoved(object sender, DataGridViewRowsRemovedEventArgs e) { //throw new NotImplementedException(); } /// /// 列表有移除行事件 /// /// /// protected virtual void dgvData_RowsAdded(object sender, DataGridViewRowsAddedEventArgs e) { //throw new NotImplementedException(); } /// /// 列表双击事件 /// /// /// protected virtual void dgvData_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e) { //throw new NotImplementedException(); } /// /// 服务次数输入框离开事件 /// /// /// protected virtual void txtCount_Leave(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 服务次数输入限制 /// /// /// protected virtual void txtCount_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } } }