C# Button点击变颜色
在窗体上加一个按钮Button1,当启动调试时显示的是蓝色的“在线”,再点一下显示的是红色的“离线”,如此反复。请问代码该怎么写?...
在窗体上加一个按钮Button1,当启动调试时显示的是蓝色的“在线”,再点一下显示的是红色的“离线”,如此反复。请问代码该怎么写?
展开
2个回答
展开全部
if(this.button1.Text=="离线")
{
this.button1.Text="在线";
this.button1.ForeColor = Color.Blue;
}
else
{
this.button1.Text="离线";
this.button1.ForeColor = Color.Red;
}
{
this.button1.Text="在线";
this.button1.ForeColor = Color.Blue;
}
else
{
this.button1.Text="离线";
this.button1.ForeColor = Color.Red;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
微测检测5.10
2023-05-10 广告
2023-05-10 广告
您好!建议咨 深圳市微测检测有限公司,已建立起十余个专业实验室,企业通过微测检测就可以获得一站式的测试与认 证解决方案;(EMC、RF、MFi、BQB、QI、USB、安全、锂电池、快充、汽车电子EMC、汽车手机互 联、语音通话质量),认证遇...
点击进入详情页
本回答由微测检测5.10提供
展开全部
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;
}
}
}
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;
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询