UControl_Log.cs 550 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. namespace HOZProject
  11. {
  12. public partial class UControl_Log : UserControl
  13. {
  14. public UControl_Log()
  15. {
  16. InitializeComponent();
  17. }
  18. private void btnClose_Click(object sender, EventArgs e)
  19. {
  20. Form fParent = this.ParentForm;
  21. fParent.Close();
  22. }
  23. }
  24. }