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;
}
///
/// 窗体加载事件
///
///
///
protected virtual void PhotographerConditionQuerySmallForm_Load(object sender, EventArgs 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 chkPoints_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 时间段
///
///
///
protected virtual void chkDate_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 返还时间段
///
///
///
protected virtual void chkBack_Click(object sender, EventArgs e)
{
//throw new NotImplementedException();
}
///
/// 开始积分输入限制
///
///
///
protected virtual void txtPointsStart_KeyPress(object sender, KeyPressEventArgs e)
{
//throw new NotImplementedException();
}
///
/// 结束积分输入限制
///
///
///
protected virtual void txtPointsEnd_KeyPress(object sender, KeyPressEventArgs e)
{
//throw new NotImplementedException();
}
}
}