我需要帮助找到一个介于两个数字之间(0〜274)的值,如果该值介于这些值之间,则将允许我在其中一种表格上的文本为黑色。如果文本为275〜300,则文本将为红色。
private void richTextBox1_TextChanged(object sender, EventArgs e)
{
string Lent = richTextBox1.TextLength.ToString();
l6.Text = Lent + "/300";
if (Lent == "275")
{
l6.ForeColor = Color.Red;
}
else if (Lent == "274")
{
l6.ForeColor = Color.Red;
}
else if (Lent == "0")
{
l6.ForeColor = Color.Red;
}
}
l6是my label6,它显示从开始的文本长度richTextBox,例如"0/300"。我试图在两者之间找到价值,但是失败了,我真的需要一些帮助!
相关分类