frmTimeAndAttendance.cs 941 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace LYFZ.Software.UI
  10. {
  11. public partial class frmTimeAndAttendance : LYFZ.ComponentLibrary.BaseContentsFormMain
  12. {
  13. public frmTimeAndAttendance()
  14. {
  15. InitializeComponent();
  16. this.FormClosed += frmTimeAndAttendance_FormClosed;
  17. }
  18. void frmTimeAndAttendance_FormClosed(object sender, FormClosedEventArgs e)
  19. {
  20. // axlyfzAttendanceModule1.Close();
  21. }
  22. private void button1_Click(object sender, EventArgs e)
  23. {
  24. // axlyfzAttendanceModule1.InitMainFormView( LYFZ.BLL.BLL_ErpUser.Admin_20141125111443713, 1, 1);
  25. }
  26. private void buttonExUP_Click(object sender, EventArgs e)
  27. {
  28. }
  29. }
  30. }