Form1.cs
上传用户:sz2001
上传日期:2022-07-12
资源大小:85k
文件大小:1k
源码类别:

C#编程

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace test
  9. {
  10.     public partial class Form1 : Form
  11.     {
  12.         public Form1()
  13.         {
  14.             InitializeComponent();
  15.         }
  16.         private void btnquit_Click(object sender, EventArgs e)
  17.         {
  18.             this.Close();
  19.         }
  20.         private void btnvis_Click(object sender, EventArgs e)
  21.         {
  22.             if (alarm1.Visible == true)
  23.             {
  24.                 this.btnvis.Text = "显示控件";
  25.                 alarm1.Visible = false;
  26.             }
  27.             else
  28.             {
  29.                 this.btnvis.Text = "隐藏控件";
  30.                 alarm1.Visible = true;
  31.             }
  32.         }
  33.     }
  34. }