我想知道是否可以更改WinForm Button文本的颜色。我正在查看字体属性,但找不到任何东西,但我觉得这些东西很简单,并且(在我看来)实用,因为这应该是可能的......
答案 0 :(得分:6)
您需要继承自ForeColor
的按钮的Control
属性。请参阅this link。
答案 1 :(得分:0)
使用ForeColor属性。
答案 2 :(得分:0)
查看按钮ForeColor
属性
答案 3 :(得分:0)
var desiredLength = 4; // no jokes please...
// Listen to the change, keyup & paste events.
$('#text-box').on('change keyup paste', function() {
// Figure out the length of the input value
var textLength = $('#text-box').val().length;
// Calculate the percentage
var percent = (textLength / desiredLength) * 100;
// Limit the percentage to 100.
if (percent > 100) {
percent = 100;
}
// Animate the width of the bar based on the percentage.
$('.progress-bar').animate({
width: percent + '%'
}, 200)
});