12345678910111213141516171819202122232425262728293031323334353637 |
- 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 FrmEarlySecondPin : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmEarlySecondPin()
- {
- InitializeComponent();
- //panelEx1.BorderStyle = BorderStyle.FixedSingle;
- //panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- //panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- //panelEx2.BackColor = UIBlueThemeResources.BorderAreaColor;
- //panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
- this.Shown += FrmEarlySecondPin_Shown;
- this.btnSave.Click += btnSave_Click;
- }
- protected virtual void btnSave_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmEarlySecondPin_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|