星火直播PC
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

AttendanceWindow.xaml.cs 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Shapes;
  14. namespace XHZB.Desktop
  15. {
  16. /// <summary>
  17. /// AttendanceWindow.xaml 的交互逻辑
  18. /// </summary>
  19. public partial class AttendanceWindow : Window
  20. {
  21. public AttendanceWindow()
  22. {
  23. InitializeComponent();
  24. }
  25. private void Window_Closed(object sender, EventArgs e)
  26. {
  27. }
  28. private void Window_Loaded(object sender, RoutedEventArgs e)
  29. {
  30. }
  31. private void Window_Unloaded(object sender, RoutedEventArgs e)
  32. {
  33. }
  34. private void btnEnd_Click(object sender, RoutedEventArgs e)
  35. {
  36. Hide();
  37. }
  38. private void Window_MouseLeftButtonDown_1(object sender, MouseButtonEventArgs e)
  39. {
  40. }
  41. }
  42. }