123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- 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 PhotographerConditionQuerySmallForm : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public PhotographerConditionQuerySmallForm()
- {
- InitializeComponent();
- this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
- this.panelEx2.BackColor = UIBlueThemeResources.UCNavigationToolColor;
- this.Load += PhotographerConditionQuerySmallForm_Load;
- this.btnOK.Click += btnOK_Click;
- this.btnCancel.Click += btnCancel_Click;
- this.chkPoints.Click += chkPoints_Click;
- this.chkDate.Click += chkDate_Click;
- this.checkBoxEx1.Click += chkBack_Click;
- this.txtPointsStart.KeyPress += txtPointsStart_KeyPress;
- this.txtPointsEnd.KeyPress += txtPointsEnd_KeyPress;
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void PhotographerConditionQuerySmallForm_Load(object sender, EventArgs 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 chkPoints_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 时间段
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void chkDate_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 返还时间段
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void chkBack_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 开始积分输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtPointsStart_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 结束积分输入限制
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void txtPointsEnd_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|