mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
25 lines
1.2 KiB
XML
25 lines
1.2 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">
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="190*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<StackPanel Margin="0,0,0,71" Grid.ColumnSpan="2">
|
|
<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>
|
|
<DockPanel Margin="0,125,0,65" Grid.RowSpan="3" Grid.ColumnSpan="2">
|
|
<Label x:Name="warningLabel" DockPanel.Dock="Top" FontWeight="bold" Content="Warnings & Errors"/>
|
|
<ListBox x:Name="listErrors" MouseDoubleClick="listErrors_MouseDoubleClick"/>
|
|
</DockPanel>
|
|
</Grid>
|
|
</UserControl>
|