mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 21:08:51 +00:00
22 lines
966 B
XML
22 lines
966 B
XML
<UserControl x:Class="Cosmos.Build.Windows.BuildUC"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:Cosmos.Build.Windows"
|
|
Height="300" Width="300">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*" />
|
|
<RowDefinition Height="10" />
|
|
<RowDefinition Height="100" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<ListBox Grid.Row="0" Grid.Column="0" x:Name="listProgress" Height="Auto" Width="Auto"/>
|
|
|
|
<GridSplitter Grid.Row="1" Grid.Column="0" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" />
|
|
|
|
<DockPanel Grid.Row="2" Grid.Column="0">
|
|
<Label x:Name="warningLabel" DockPanel.Dock="Top" FontWeight="bold" Content="Warnings & Errors"/>
|
|
<ListBox x:Name="listErrors"/>
|
|
</DockPanel>
|
|
</Grid>
|
|
</UserControl>
|