Cosmos/source/Cosmos.Build.Windows/BuildUC.xaml
kudzu_cp 8eed14ddcf
2008-10-07 21:51:25 +00:00

29 lines
1.3 KiB
XML

<UserControl x:Class="Cosmos.Compiler.Builder.BuildUC"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Cosmos.Compiler.Builder"
Height="300" Width="300">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="10" />
<RowDefinition Height="100" />
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" Height="Auto" Width="Auto">
<Label Content="Scanning methods:"/>
<ProgressBar x:Name="progMethodsScanned" Height="15" Margin="15,0" Maximum="100" Value="50" />
<Label Content="Processing methods:"/>
<ProgressBar x:Name="progMethodsProcessed" Height="15" Margin="15,0"/>
<Label Content="Processing static fields:"/>
<ProgressBar x:Name="progStaticFieldsProcessed" Height="15" Margin="15,0"/>
</StackPanel>
<GridSplitter Grid.Row="1" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" />
<DockPanel Grid.Row="2" >
<Label x:Name="warningLabel" DockPanel.Dock="Top" FontWeight="bold" Content="Warnings &amp; Errors"/>
<ListBox x:Name="listErrors"/>
</DockPanel>
</Grid>
</UserControl>