222
tangxu
2025-01-13 1ecfbbf8b56f6c18f41cc1eead763c7fa93624ce
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using DPumpHydr.WinFrmUI.RLT;
using DPumpHydr.WinFrmUI.RLT.Controls;
using System;
 
namespace DPumpHydr.DesktopMain
{
    public partial class LoginFrm : DPumpHydr.WinFrmUI.RLT.Forms.CrownForm
    {
        public LoginFrm()
        {
            InitializeComponent();
        }
 
        private void MaterialLabel1_Click(object sender, EventArgs e)
        {
            //hopeSwitch1.Checked = !hopeSwitch1.Checked;
        }
 
        private void materialButton1_Click(object sender, EventArgs e)
        {
            this.Close();
        }
 
        private void materialButton2_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}