使用标签的百分比

时间:2012-07-30 08:31:57

标签: visual-c#-express-2010

使用按钮+和 - 百分比从0%到100%不等。   有没有办法显示标签的百分比,如下面这个链接(图像)。

image1

image2

PS我不会使用进度条,但如果还有其他更好的方法请建议

1 个答案:

答案 0 :(得分:0)

制作+和 - 按钮以及带有绿色背景的标签。

点击加号或减号调整标签上的标签和文字的高度

private void plusButton_Click(object sender, RoutedEventArgs e)
{
    if(percentLength.Height < 100)
        percentLength.Height = percentLength.Height + 10;
}

private void minusButton_Click(object sender, RoutedEventArgs e)
{
    if (percentLength.Height > 0)
        percentLength.Height = percentLength.Height - 10;
}

protected void percentLength_HeightChanged(object sender, EventArgs e)
{
    percentLength.Content = percentLength.Height + "%";
}