-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml
27 lines (27 loc) · 1.7 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Window x:Class="OfflineDropRunner.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:OfflineDropRunner"
mc:Ignorable="d"
Title="Octopus Offline Drop Runner" Height="650" Width="1000">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition/>
</Grid.RowDefinitions>
<StackPanel Grid.Row="0" VerticalAlignment="Center" Orientation="Horizontal" HorizontalAlignment="Left">
<Button x:Name="RunButton" Content="Run Offline Drop" HorizontalAlignment="Left" Margin="10,10,3,3" VerticalAlignment="Top" Width="170" Height="40" Click="RunButton_Click"/>
<Button x:Name="CopyLog" Content="Copy Log" Margin="40,10,3,3" VerticalAlignment="Top" Width="170" Height="40" Click="CopyLog_Click" />
<CheckBox x:Name="RtfFormat" Content="RtfFormat ?" VerticalAlignment="Center" Margin="8,10,3,3"></CheckBox>
<TextBox x:Name="TxtPassword" Text="Password" Width="284" Height="27" Margin="50,0,0,0"/>
</StackPanel>
<ScrollViewer x:Name="scrollViewTb" Grid.Row="1" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="5,5,5,5">
<RichTextBox x:Name="OutText" IsReadOnly="True" HorizontalAlignment="Stretch" AcceptsReturn="True" VerticalAlignment="Stretch" />
</ScrollViewer>
</Grid>
</Window>