123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- 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;
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void ReferralPointsSuperSmallForm_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 关闭窗体后发生事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void ReferralPointsSuperSmallForm_FormClosing(object sender, FormClosingEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 确定
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnOK_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 取消
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnCancel_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 列表事件双击
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void lstTextQuery_MouseDoubleClick(object sender, MouseEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 回车
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void lstTextQuery_KeyDown(object sender, KeyEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 列表失去焦点
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void panelEx2_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 输入值变化
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtTextQuery_EventTextBoxEx_TextChanged(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 点击输入框
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtTextQuery_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 按键盘上的下健时
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtTextQuery_KeyDown(object sender, KeyEventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|