更改进度条颜色 [英] change a progress bar color

查看:88
本文介绍了更改进度条颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的进度条颜色非常浅!当我将我的Expression Blend 3项目转换为Expression Blend 4时,发生了这种情况!

不透明度为100%.我认为混合4中的进度条上有一个银色动画.我只是从wpf开始,不知道如何覆盖此样式..我认为有一种方法可以更改前景填充进度条的方式.

现在我有这个

my progress bar colors are very light! This happened when i converted my expression blend 3 project to expression blend 4!

The opacity is a 100%. I think there is a silverish animation over the progress bars in blend 4. I am just starting with wpf and don''t know how to override this style.. i think there is a way to change how the foreground fills in the progress bar.

right now i have this

<progressbar x:name="Pbar2" margin="82,80,30,0" verticalalignment="Top" height="16" foreground="Red" valuechanged="UpdateTextBlock2" borderbrush="{x:Null}" removed="{x:Null}" xmlns:x="#unknown" />



但是红色很淡..上面有银色的光使它变光..还有一个动画类型的东西在进度条中进行..这种小光一直在里面移动..还有什么方法可以禁用它吗?
感谢您的帮助!



but the red color is very light..there is a silverish glow over it which makes it light..and also there is a animation type thing that goes on in a progress bar..that small glow that keeps moving inside..Is there any way to disable that as well?
thank you for ur help!!

推荐答案

您可以为进度栏设置模板.这是Microsoft示例页面中的一些代码.

http://msdn.microsoft.com/en-us/magazine/cc163497.aspx#S4 [ ^ ]

You can setup a template for the progressbar. Here is some code from a Microsoft example page.

http://msdn.microsoft.com/en-us/magazine/cc163497.aspx#S4[^]

<ProgressBar Margin="50" HorizontalAlignment="Center"

             Value="{Binding ElementName=scroll, Path=Value}">
    <ProgressBar.Template>
        <ControlTemplate>
            <StackPanel>
                <Rectangle Name="PART_Track"

                           Height="20" Width="300" Fill="Red" />

                <Rectangle Name="PART_Indicator"

                           Height="20" Fill="Blue" />
            </StackPanel>
        </ControlTemplate>
    </ProgressBar.Template>
</ProgressBar>


这篇关于更改进度条颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆