| 1234567891011121314151617181920 |
- using System.Windows;
- namespace LampInspectionMachine.Views
- {
- /// <summary>
- /// RoleLoginView.xaml 的交互逻辑
- /// </summary>
- public partial class RoleLoginView : Window
- {
- public RoleLoginView()
- {
- InitializeComponent();
- }
- private void Button_Click(object sender, RoutedEventArgs e)
- {
- this.Close();
- }
- }
- }
|