123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- 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.SMSManagement.ShortSmsMessage
- {
- public partial class FrmImportNumbers : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmImportNumbers()
- {
- InitializeComponent();
- this.Load += new EventHandler(FrmImportNumbers_Load);
- this.btnOk.Click += new EventHandler(btnOk_Click);
- this.txtProd_SalesPrice.KeyPress += new KeyPressEventHandler(txtProd_SalesPrice_KeyPress);
- this.txtProd_SalesPrice.TextChanged += new EventHandler(txtProd_SalesPrice_TextChanged);
- this.btnCanle.Click += new EventHandler(btnCanle_Click);
- panelEx1.BorderStyle = BorderStyle.FixedSingle;
- panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- }
- protected virtual void btnCanle_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtProd_SalesPrice_TextChanged(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmImportNumbers_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtProd_SalesPrice_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnOk_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|