C# Button点击变颜色

在窗体上加一个按钮Button1,当启动调试时显示的是蓝色的“在线”,再点一下显示的是红色的“离线”,如此反复。请问代码该怎么写?... 在窗体上加一个按钮Button1,当启动调试时显示的是蓝色的“在线”,再点一下显示的是红色的“离线”,如此反复。请问代码该怎么写? 展开
 我来答
dragon2snow
2009-10-17 · TA获得超过1099个赞
知道小有建树答主
回答量:1150
采纳率:0%
帮助的人:1129万
展开全部
if(this.button1.Text=="离线")

{

this.button1.Text="在线";

this.button1.ForeColor = Color.Blue;

}

else

{

this.button1.Text="离线";
this.button1.ForeColor = Color.Red;

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
shenlye
推荐于2016-11-26 · 超过12用户采纳过TA的回答
知道答主
回答量:67
采纳率:0%
帮助的人:43.6万
展开全部
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{
public partial class Form1 : Form
{
Boolean isTrue = true;
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
if(isTrue)
{
this.button1.Text = "在线";
this.button1.ForeColor = Color.Blue;
}
else
{
this.button1.Text = "离线";
this.button1.ForeColor = Color.Red;
}
isTrue = !isTrue;
}
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式