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