123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- 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 FrmRatingSet : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmRatingSet()
- {
- InitializeComponent();
- panelEx1.BorderStyle = BorderStyle.FixedSingle;
- panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.dgv.RefreshTheme();
- this.Shown += FrmRatingSet_Shown;
- this.btnSave.Click += btnSave_Click;
- this.btnDelete.Click += btnDelete_Click;
- this.btnCanle.Click += btnCanle_Click;
- this.dgv.Click += dgv_Click;
- this.txtSfrs_Scores.KeyPress += txtSfrs_Scores_KeyPress;
- // this.txtSfrs_TotalPoints.KeyPress += txtSfrs_TotalPoints_KeyPress;
- }
- protected virtual void txtSfrs_TotalPoints_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtSfrs_Scores_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void dgv_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnCanle_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnDelete_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSave_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmRatingSet_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|