123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- 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.WageSet
- {
- public partial class FrmPhaseCommissionScheme : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmPhaseCommissionScheme()
- {
- InitializeComponent();
- this.IsCustomScrollBar = true;
- this.Load += FrmPhaseCommissionScheme_Load;
- this.btnAdd.Click += btnAdd_Click;
- this.txtWcs_PerformanceBeginValue.KeyPress += txtWcs_PerformanceBeginValue_KeyPress;
- this.txtWcs_PerformanceEndValue.KeyPress += txtWcs_PerformanceEndValue_KeyPress;
- this.txtWcs_Percentage.KeyPress += txtWcs_Percentage_KeyPress;
- this.btnDelete.Click += btnDelete_Click;
- this.chkWcs_PerformanceHight.Click += chkWcs_PerformanceHight_Click;
- this.btnResults.Click += btnResults_Click;
- this.txtValue.KeyPress += txtValue_KeyPress;
- panelEx1.BorderStyle = BorderStyle.FixedSingle;
- panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- panelEx2.BorderStyle = BorderStyle.FixedSingle;
- panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- panelEx3.BorderStyle = BorderStyle.FixedSingle;
- panelEx3.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx3.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- panelEx4.BorderStyle = BorderStyle.FixedSingle;
- panelEx4.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx4.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- }
- protected virtual void txtValue_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnResults_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void chkWcs_PerformanceHight_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnDelete_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtWcs_Percentage_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtWcs_PerformanceEndValue_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void txtWcs_PerformanceBeginValue_KeyPress(object sender, KeyPressEventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnAdd_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmPhaseCommissionScheme_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|