-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRenameProgressDialog.xaml
More file actions
54 lines (51 loc) · 2.09 KB
/
RenameProgressDialog.xaml
File metadata and controls
54 lines (51 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Window x:Class="CodingWithCalvin.ProjectRenamifier.Dialogs.RenameProgressDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Renaming Project"
Width="400"
Height="384"
ResizeMode="NoResize"
WindowStartupLocation="CenterOwner"
ShowInTaskbar="False">
<Grid Margin="16">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0"
x:Name="HeaderText"
Text="Renaming project..."
FontWeight="SemiBold"
FontSize="14"
Margin="0,0,0,16"/>
<ItemsControl Grid.Row="1"
x:Name="StepsList"
Margin="0,0,0,16">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Grid Margin="0,4">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="24"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<TextBlock Grid.Column="0"
Text="{Binding StatusIcon}"
FontFamily="Segoe UI Symbol"
VerticalAlignment="Center"/>
<TextBlock Grid.Column="1"
Text="{Binding Description}"
Foreground="{Binding TextColor}"
VerticalAlignment="Center"/>
</Grid>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
<ProgressBar Grid.Row="2"
x:Name="ProgressBar"
Height="8"
IsIndeterminate="False"
Minimum="0"
Maximum="100"/>
</Grid>
</Window>