1234567891011121314151617181920212223242526272829303132333435363738 |
- 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
- {
- public partial class frmTimeAndAttendance : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public frmTimeAndAttendance()
- {
- InitializeComponent();
- this.FormClosed += frmTimeAndAttendance_FormClosed;
-
- }
- void frmTimeAndAttendance_FormClosed(object sender, FormClosedEventArgs e)
- {
- // axlyfzAttendanceModule1.Close();
-
- }
- private void button1_Click(object sender, EventArgs e)
- {
- // axlyfzAttendanceModule1.InitMainFormView( LYFZ.BLL.BLL_ErpUser.Admin_20141125111443713, 1, 1);
- }
- private void buttonExUP_Click(object sender, EventArgs e)
- {
- }
- }
- }
|