是否有像Windows Phone点这样的WPF进度条?

时间:2011-08-31 15:41:55

标签: wpf animation progress-bar

主题真的说明了一切:

是否有像Windows Phone点这样的WPF进度条?

3 个答案:

答案 0 :(得分:1)

原来并不是一个简单的答案,但我在这里找到了一个: http://www.jeff.wilcox.name/2010/08/performanceprogressbar/

答案 1 :(得分:0)

你无法模拟当前的模板。这是你如何模板一: http://www.mobydisk.com/softdev/techinfo/flaming_progress_bar/index.html

答案 2 :(得分:0)

假设您正在尝试获得图片中所示的内容,那么有解决方案。

get MahApps.Metro from nuget

并使用以下代码

 <Window x:Class="Client.Login"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:Controls="http://metro.mahapps.com/winfx/xaml/controls"
        mc:Ignorable="d"
        Height="650" Width="450" >
        <Controls:MetroProgressBar IsIndeterminate="True"/>
 </Window>