123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- 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.Satisfaction
- {
- public partial class FrmSatisfactionInvestigation : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmSatisfactionInvestigation()
- {
- InitializeComponent();
- this.dgv1.RefreshTheme();
- this.dgv2.RefreshTheme();
- panelEx2.BorderStyle = BorderStyle.FixedSingle;
- panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
- this.Shown += FrmSatisfactionInvestigation_Shown;
- this.cmbObject.SelectedIndexChanged += cmbObject_SelectedIndexChanged;
- this.dgv1.Click += dgv1_Click;
- cmSfrs_Scores.SelectedIndexChanged += cmSfrs_Scores_SelectedIndexChanged;
- cmSfrs_Scores.Leave += cmSfrs_Scores_Leave;
-
-
- this.dgv2.CellMouseDoubleClick += dgv2_CellMouseDoubleClick;
- this.btnSave.Click += btnSave_Click;
- this.btnClose.Click += btnClose_Click;
-
- }
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
-
- }
- protected virtual void btnSave_Click(object sender, EventArgs e)
- {
-
- }
-
-
-
-
-
-
-
-
- protected virtual void cmSfrs_Scores_Leave(object sender, EventArgs e)
- {
-
- }
- protected virtual void dgv2_CellMouseDoubleClick(object sender, DataGridViewCellMouseEventArgs e)
- {
-
- }
- protected virtual void cmSfrs_Scores_SelectedIndexChanged(object sender, EventArgs e)
- {
-
- }
- protected virtual void dgv1_Click(object sender, EventArgs e)
- {
-
- }
- protected virtual void cmbObject_SelectedIndexChanged(object sender, EventArgs e)
- {
-
- }
-
- protected virtual void FrmSatisfactionInvestigation_Shown(object sender, EventArgs e)
- {
-
- }
- }
- }
|