Cosmos/source/Cosmos.Build.Windows/BuildUC.xaml
kudzu_cp 21430e5fb1
2008-09-19 21:56:49 +00:00

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 &amp; Errors"/>
<ListBox x:Name="listErrors"/>
</DockPanel>
</Grid>
</UserControl>