本文介绍了如何更改标签盒颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果数字是负红色colur想要消失,如果数字正绿色colur
if number is negative red colur want to disaply if number positive green colur
推荐答案
//lblYourLabel.Text="-1990";
//just after value assignment
lblYourLabel.ForeColor = int.Parse(lblYourLabel.Text) < 0 ? System.Drawing.Color.Red : System.Drawing.Color.Green;
希望,它有帮助:)
Hope, it helps :)
这篇关于如何更改标签盒颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!