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.SuperSmallForm { public partial class MemberPaymentSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain { public MemberPaymentSuperSmallForm() { InitializeComponent(); this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor; this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor; this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor; this.panelEx2.BorderStyle = BorderStyle.FixedSingle; this.labelEx3.ForeColor = UIBlueThemeResources.TitleTextColor; this.Shown += MemberPaymentSuperSmallForm_Shown; this.txtConfirmAmount.KeyPress += txtConfirmAmount_KeyPress; this.txtRemark.KeyPress += txtRemark_KeyPress; this.btnOK.Click += btnOK_Click; this.btnCancel.Click += btnCancel_Click; this.btnRecharge.Click += btnRecharge_Click; this.btnSet.Click += btnSet_Click; } /// /// 窗体加载事件 /// /// /// protected virtual void MemberPaymentSuperSmallForm_Shown(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 金额输入控制 /// /// /// protected virtual void txtConfirmAmount_KeyPress(object sender, KeyPressEventArgs e) { //throw new NotImplementedException(); } /// /// 备注输入控制 /// /// /// protected virtual void txtRemark_KeyPress(object sender, KeyPressEventArgs 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 btnRecharge_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 设置 /// /// /// protected virtual void btnSet_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } } }