123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- 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.CameraControlBook
- {
- public partial class ProcessMonitorFormMain : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public ProcessMonitorFormMain()
- {
- InitializeComponent();
- this.dgvData.RefreshTheme();
- this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
- // this.panelEx2.BackColor = UIBlueThemeResources.BorderAreaColor;
- this.UcNavigationTool.LabTitle = "流程监控";
- this.Shown += ProcessMonitorFormMain_Shown;
- this.Load += ProcessMonitorFormMain_Load;
- this.cmbQueryText.KeyDown += cmbQueryText_KeyDown;
- this.btnQuery.Click += btnQuery_Click;
- this.btnWarningSet.Click += btnWarningSet_Click;
- this.btnExport.Click += btnExport_Click;
- this.btnClose.Click += btnClose_Click;
- this.chkDressVersion.Click += chkDressVersion_Click;
- this.chkKidsVersion.Click += chkKidsVersion_Click;
- this.chkPortraitVersion.Click += chkPortraitVersion_Click;
- this.dgvData.CellMouseDoubleClick += dgvData_CellMouseDoubleClick;
- this.Resize += ProcessMonitorFormMain_Resize;
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void ProcessMonitorFormMain_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 窗体加载事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void ProcessMonitorFormMain_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 回车
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void cmbQueryText_KeyDown(object sender, KeyEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 查询
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnQuery_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 预警设置
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnWarningSet_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 导出
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnExport_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 关闭
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 婚纱版
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void chkDressVersion_Click(object sender, EventArgs e)
- {
- // throw new NotImplementedException();
- }
- /// <summary>
- /// 儿童版
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void chkKidsVersion_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 写真版
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void chkPortraitVersion_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 双击事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void dgvData_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 窗体大小发生变化事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- protected virtual void ProcessMonitorFormMain_Resize(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- /// <summary>
- /// 定义列表属性
- /// </summary>
- public LYFZ.ComponentLibrary.DataGridViewEx DataGridViewEx1
- {
- get { return this.dgvData; }
- set { this.dgvData = value; }
- }
- /// <summary>
- /// 定义分页控件属性
- /// </summary>
- public LYFZ.UCPager.ucPagerEx UcPagerEx1
- {
- get { return this.ucPagerEx1; }
- set { this.ucPagerEx1 = value; }
- }
- }
- }
|