Cosmos/source/Cosmos.Build.Windows/BuildOptionsWindow.xaml

22 lines
1 KiB
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">
<FlowDocumentScrollViewer>
<FlowDocument>
<Paragraph>Current build path is <Span Name="spanBuildPath"></Span>
</Paragraph>
<Paragraph>
Please select a build type by pressing a number on the <Bold>main keyboard</Bold>. Please do not use the numbers on the num pad, they will not work.
</Paragraph>
<BlockUIContainer>
<ListBox Name="lboxTargets" />
</BlockUIContainer>
<BlockUIContainer>
<Image Source="/Cosmos.Build.Windows;component/Logo-1.png" Height="106" Width="229" />
</BlockUIContainer>
<BlockUIContainer>
<CheckBox Name="buildCheckBox" IsChecked="True">Build</CheckBox>
</BlockUIContainer>
</FlowDocument>
</FlowDocumentScrollViewer></Window>