Form1.cs
上传用户:sz2001
上传日期:2022-07-12
资源大小:85k
文件大小:1k
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace test
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void btnquit_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- private void btnvis_Click(object sender, EventArgs e)
- {
- if (alarm1.Visible == true)
- {
- this.btnvis.Text = "显示控件";
- alarm1.Visible = false;
- }
- else
- {
- this.btnvis.Text = "隐藏控件";
- alarm1.Visible = true;
- }
- }
- }
- }