Chinaunix首页 | 论坛 | 博客
  • 博客访问: 961927
  • 博文数量: 210
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 2070
  • 用 户 组: 普通用户
  • 注册时间: 2014-11-19 21:54
文章分类

全部博文(210)

文章存档

2020年(2)

2019年(18)

2018年(27)

2017年(5)

2016年(53)

2015年(88)

2014年(17)

分类: C/C++

2015-10-08 19:07:02


点击(此处)折叠或打开

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;

  9. namespace TestForm
  10. {
  11.     public partial class Form1 : Form
  12.     {
  13.         public Form1()
  14.         {
  15.             InitializeComponent();
  16.         }

  17.         private void OkButton_Click(object sender, EventArgs e)
  18.         {
  19.             // Close();
  20.             // MessageBox.Show("你点击了一个按钮");
  21.             if (OkButton.Text == "播放")
  22.                 OkButton.Text = "暂停";
  23.             else
  24.                 OkButton.Text = "播放";

  25.             if (TextLabel.Text == "我已经醒来了")
  26.                 TextLabel.Text = "睡着了";
  27.             else
  28.                 TextLabel.Text = "我已经醒来了";

  29.             if (TextLabel.ForeColor == Color.Red)
  30.                 TextLabel.ForeColor = Color.Green;
  31.             else
  32.                 TextLabel.ForeColor = Color.Red;
  33.         }
  34.     }
  35. }

  36.  
阅读(902) | 评论(0) | 转发(0) |
0

上一篇:LCD1602显示器

下一篇:c# Window 窗体与控件

给主人留下些什么吧!~~