mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
33 lines
1.6 KiB
XML
33 lines
1.6 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"
|
|
Width="607"
|
|
>
|
|
<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" />-->
|
|
<TextBlock x:Name="progMethodsScanned" Text="0" Margin="15,0"></TextBlock>
|
|
<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"/>
|
|
<Label Content="Build Step:"/>
|
|
<TextBlock x:Name="textStep" Text="step" Margin="15,0"> </TextBlock>
|
|
|
|
<DockPanel Grid.RowSpan="3" Grid.ColumnSpan="2">
|
|
<Label x:Name="warningLabel" DockPanel.Dock="Top" FontWeight="bold" Content="Warnings & Errors"/>
|
|
<ListBox x:Name="listErrors" DockPanel.Dock="Bottom" MouseDoubleClick="listErrors_MouseDoubleClick" />
|
|
<ListBox x:Name="listInformation" DockPanel.Dock="Bottom" />
|
|
</DockPanel>
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
</UserControl>
|