123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- 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 DataSetServicePackageSetSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public DataSetServicePackageSetSmallForm()
- {
- InitializeComponent();
- this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
- this.Shown += DataSetServicePackageSetSmallForm_Shown;
- this.dgvData.CellMouseDoubleClick += dgvData_CellMouseDoubleClick;
- this.cmbtreevClass.ComboBoxTreeViewEx_TextChanged += cmbtreevClass_ComboBoxTreeViewEx_TextChanged;
- this.txtPrice.KeyPress += txtPrice_KeyPress;
- this.btnSet.Click += btnSet_Click;
- this.btnSave.Click += btnSave_Click;
- this.btnDelete.Click += btnDelete_Click;
- this.btnClear.Click += btnClear_Click;
- }
- /// <summary>
- /// 窗体加载
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void DataSetServicePackageSetSmallForm_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 列表双击
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void dgvData_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 类别选择
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void cmbtreevClass_ComboBoxTreeViewEx_TextChanged(object sender, TreeViewEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 价格限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtPrice_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 设置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnSet_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 保存
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnSave_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 删除
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnDelete_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 清空
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnClear_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|