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 ReferralPointsSuperSmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain { public ReferralPointsSuperSmallForm() { InitializeComponent(); this.panelEx1.BackColor = UIBlueThemeResources.UCNavigationToolColor; this.panelEx2.BackColor = UIBlueThemeResources.BorderAreaColor; this.panelEx2.BorderStyle = BorderStyle.FixedSingle; this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor; this.panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor; this.labelEx2.ForeColor = UIBlueThemeResources.TitleTextColor; this.labelEx7.ForeColor = UIBlueThemeResources.TitleTextColor; this.Load += ReferralPointsSuperSmallForm_Load; this.FormClosing += ReferralPointsSuperSmallForm_FormClosing; this.btnOK.Click += btnOK_Click; this.btnCancel.Click += btnCancel_Click; this.lstTextQuery.MouseDoubleClick += lstTextQuery_MouseDoubleClick; this.lstTextQuery.KeyDown += lstTextQuery_KeyDown; this.txtTextQuery.EventTextBoxEx_TextChanged += txtTextQuery_EventTextBoxEx_TextChanged; this.txtTextQuery.Click += txtTextQuery_Click; this.txtTextQuery.KeyDown += txtTextQuery_KeyDown; this.panelEx2.Click += panelEx2_Click; } /// /// 窗体加载事件 /// /// /// protected virtual void ReferralPointsSuperSmallForm_Load(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 关闭窗体后发生事件 /// /// /// protected virtual void ReferralPointsSuperSmallForm_FormClosing(object sender, FormClosingEventArgs 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 lstTextQuery_MouseDoubleClick(object sender, MouseEventArgs e) { //throw new NotImplementedException(); } /// /// 回车 /// /// /// protected virtual void lstTextQuery_KeyDown(object sender, KeyEventArgs e) { //throw new NotImplementedException(); } /// /// 列表失去焦点 /// /// /// protected virtual void panelEx2_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 输入值变化 /// /// /// protected virtual void txtTextQuery_EventTextBoxEx_TextChanged(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 点击输入框 /// /// /// protected virtual void txtTextQuery_Click(object sender, EventArgs e) { //throw new NotImplementedException(); } /// /// 按键盘上的下健时 /// /// /// protected virtual void txtTextQuery_KeyDown(object sender, KeyEventArgs e) { //throw new NotImplementedException(); } } }