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 DataSetServiceContentSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain { public DataSetServiceContentSmallForm() { InitializeComponent(); this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor; this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor; this.panelEx1.BorderStyle = BorderStyle.FixedSingle; this.Shown += MemberServicesCardContentSetSuperSmallForm_Shown; this.btnSave.Click += btnSave_Click; this.btnClear.Click += btnClear_Click; this.btnDelete.Click += btnDelete_Click; this.dgvData.CellMouseDoubleClick += dgvData_CellMouseDoubleClick; this.txtCostPrice.KeyPress += txtCostPrice_KeyPress; this.txtSalePrice.KeyPress += txtSalePrice_KeyPress; } /// /// 窗体加载事件 /// /// /// protected virtual void MemberServicesCardContentSetSuperSmallForm_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 保存 /// /// /// protected virtual void btnSave_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 清空 /// /// /// protected virtual void btnClear_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 删除 /// /// /// protected virtual void btnDelete_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 列表双击事件 /// /// /// protected virtual void dgvData_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e) { //throw new NotImplementedException(); } /// /// 成本价格限制输入 /// /// /// protected virtual void txtCostPrice_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 销售价格限制输入 /// /// /// protected virtual void txtSalePrice_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } } }