使用按钮 + 和 - 百分比从 0% 到 100% 不等。有没有办法在下面的链接(图像)上显示带有标签的百分比。
PS我不会使用进度条,但如果有其他更好的方法请建议
制作 + 和 - 按钮以及带有绿色背景的标签。
点击加号或减号调整标签的高度和标签上的文字
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 + "%";
}