15 lines
629 B
XML
15 lines
629 B
XML
<Window x:Class="BeWo.View.ChatProgressBarView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:view="clr-namespace:BeWo.View"
|
|
Height="100" Width="300" WindowStartupLocation="CenterScreen"
|
|
ResizeMode="NoResize"
|
|
>
|
|
<Grid Margin="20">
|
|
<ProgressBar x:Name="progressBar" Minimum="0" Maximum="100" />
|
|
<TextBlock Text="{Binding ElementName=progressBar, Path=Value, StringFormat={}Bitte warten... {0:0}%}" HorizontalAlignment="Center" VerticalAlignment="Center" />
|
|
</Grid>
|
|
</Window>
|
|
|
|
|