32 lines
2.1 KiB
XML
32 lines
2.1 KiB
XML
<Window x:Class="MSLMobile.SetupMainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Loaded="Window_Loaded" Closed="Window_Closed" BorderBrush="Black" BorderThickness="1" Icon="Bridge.ico"
|
|
Title="SetupMainWindow" Height="440" Width="600" ResizeMode="NoResize" WindowStyle="None" ShowInTaskbar="True" Topmost="False" WindowStartupLocation="CenterScreen"
|
|
MouseDown="Window_MouseDown" Closing="Window_Closing">
|
|
<Grid>
|
|
<!-- Close Button -->
|
|
<Button Background="Transparent" BorderThickness="0" BorderBrush="Transparent" Height="24" Width="24" HorizontalAlignment="Right" Margin="0,0,0,0" Name="btnCloseAll" VerticalAlignment="Top" Click="btnClose_Click" TabIndex="1">
|
|
<Button.Content>
|
|
<Image Source="images/button_close.png"></Image>
|
|
</Button.Content>
|
|
</Button>
|
|
|
|
<!-- Top Canvas -->
|
|
<Canvas Height="60" HorizontalAlignment="Left" Name="canvasTop" VerticalAlignment="Top" Width="600">
|
|
<Line X1="10" Y1="50" X2="590" Y2="50" StrokeThickness="2" Canvas.Left="0" Stroke="#FFFF6600" />
|
|
<Image Source="images/mckesson_logo.png" />
|
|
</Canvas>
|
|
|
|
<!-- Log Viewer Controls -->
|
|
<TextBox Height="304" HorizontalAlignment="Left" Margin="12,66,0,0" Name="textBoxLogViewer" VerticalAlignment="Top" Width="577" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto" IsReadOnly="True" IsUndoEnabled="False" />
|
|
<Button Content="Continue" Height="23" Margin="0,380,8,0" Name="btnMainButton" VerticalAlignment="Top" HorizontalAlignment="Right" Width="75" Click="btnMainButton_Click" />
|
|
|
|
<!-- Bottom Canvas -->
|
|
<Canvas Height="25" HorizontalAlignment="Left" Name="canvasBottom" VerticalAlignment="Bottom" Width="600" Margin="0,0,0,9">
|
|
<Line X1="10" Y1="10" X2="590" Y2="10" StrokeThickness="2" Canvas.Left="0" Stroke="#FFFF6600" />
|
|
</Canvas>
|
|
<Label Foreground="Blue" Margin="9,0,83,35" Name="lblFooter" Height="26" VerticalAlignment="Bottom" />
|
|
</Grid>
|
|
</Window>
|