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();
-
-
-
-
-
- this.Shown += FrmEarlySecondPin_Shown;
- this.btnSave.Click += btnSave_Click;
- }
- protected virtual void btnSave_Click(object sender, EventArgs e)
- {
-
- }
- protected virtual void FrmEarlySecondPin_Shown(object sender, EventArgs e)
- {
-
- }
- }
- }
|