T开发者_如何转开发he subject really says it all:
Is there a WPF progressbar like the Windows Phone dots?
Turns out there's not an easy answer, but I found one here: http://www.jeff.wilcox.name/2010/08/performanceprogressbar/
couldn't you template the current one. this is how you could template one: http://www.mobydisk.com/softdev/techinfo/flaming_progress_bar/index.html
Assuming you are trying to get something like in the picture this there is a solution.
get MahApps.Metro from nuget
And use the following code
<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>
精彩评论