mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-20 04:48:53 +00:00
12 lines
880 B
XML
12 lines
880 B
XML
<Window x:Class="Cosmos.Build.Windows.BuildOptionsWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="BuildOptionsWindow" Height="360" Width="376">
|
|
<Grid>
|
|
<Label Height="28" HorizontalAlignment="Left" Margin="16,14,0,0" Name="label1" VerticalAlignment="Top" Width="120">Build Path:</Label>
|
|
<TextBox Height="23" Margin="16,37,12,0" Name="textBuildPath" VerticalAlignment="Top" />
|
|
<ListBox Margin="16,100,99,14" Name="lboxTargets" />
|
|
<Label Height="28" HorizontalAlignment="Left" Margin="16,73,0,0" Name="label2" VerticalAlignment="Top" Width="120">Build Type:</Label>
|
|
<Button Height="23" HorizontalAlignment="Right" Margin="0,100,12,0" Name="butnBuild" VerticalAlignment="Top" Width="75">Button</Button>
|
|
</Grid>
|
|
</Window>
|