123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- 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.InitialSet
- {
- public partial class FrmWageSet : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmWageSet()
- {
- InitializeComponent();
- // this.panelEx2.BorderStyle = BorderStyle.FixedSingle;
- // this.panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- // this.panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- this.dgv.RefreshTheme();
- this.IsCustomScrollBar = true;
- this.Load += FrmWageSet_Load;
- // this.btnEarlyPrograms.Click += btnEarlyPrograms_Click;
- //this.btnPieceStyle.Click += btnPieceStyle_Click;
- this.btnSaveWages.Click += btnSaveWages_Click;
- this.dgv.Click += dgv_Click;
- this.txtWs_BasicWage.KeyPress += txtWs_BasicWage_KeyPress;
- this.btnClose.Click += btnClose_Click;
- this.Shown += FrmWageSet_Shown;
- // this.btnEarlySecondPin.Click += btnEarlySecondPin_Click;
- }
- protected virtual void btnEarlySecondPin_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmWageSet_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtWs_BasicWage_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnRefresh_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void dgv_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSaveWages_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnPieceStyle_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnLateProgram_Click(object sender, EventArgs e)
- {
- // throw new NotImplementedException();
- }
- protected virtual void btnEarlyPrograms_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSaveXP_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmWageSet_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|