12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- 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.CustomerSatisfactionRecord
- {
- public partial class FrmCustomerSatisfactionRecord : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmCustomerSatisfactionRecord()
- {
- InitializeComponent();
- //this.IsCustomScrollBar = true;
- this.Load += new EventHandler(FrmCustomerSatisfactionRecord_Load);
- this.btnSelect.Click += new EventHandler(btnSelect_Click);
- this.btnClose.Click += new EventHandler(btnClose_Click);
- this.tab.SelectedIndexChanged += new EventHandler(tab_SelectedIndexChanged);
- panelEx3.BorderStyle = BorderStyle.FixedSingle;
- panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.dgv1.RefreshTheme();
- this.dgv2.RefreshTheme();
- this.dgv3.RefreshTheme();
- this.dgv4.RefreshTheme();
- this.dgv5.RefreshTheme();
- this.dgv6.RefreshTheme();
- this.dgv7.RefreshTheme();
- this.dgv8.RefreshTheme();
- tabPage1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- tabPage2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- UcNavigationTool.LabTitle = "满意度调查";
- this.Shown += FrmCustomerSatisfactionRecord_Shown;
- this.btnDc.Click += btnDc_Click;
- this.tab.SelectedIndexChanged+=tab_SelectedIndexChanged;
- this.btnSet.Click += btnSet_Click;
-
-
- }
- protected virtual void btnSet_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnDc_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmCustomerSatisfactionRecord_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void pagerEx2_EventPaging(EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void pagerEx1_EventPaging(EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void tab_SelectedIndexChanged(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
- }
- protected virtual void btnSelect_Click(object sender, EventArgs e)
- {
- }
- protected virtual void FrmCustomerSatisfactionRecord_Load(object sender, EventArgs e)
- {
- }
- }
- }
|