-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMainWindow.xaml
29 lines (29 loc) · 1.38 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
28
29
<Window x:Class="FormSubmit2.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:FormSubmit2"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="34"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="0.5*"/>
<ColumnDefinition Width="0.5*"/>
</Grid.ColumnDefinitions>
<Border BorderThickness="1" Grid.ColumnSpan="2">
<WebBrowser Grid.Row="0" Name="webbrowser"/>
</Border>
<StackPanel Grid.Row="1" Orientation="Horizontal">
<Button Content="Run default script" Width="150" Margin="3" Click="RunDefault"/>
</StackPanel>
<StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Right" Grid.Column="1">
<Button Content="Run Script" Width="100" Margin="3" Click="Run"/>
<Button Content="List Element" Width="100" Margin="3" Click="OnList"/>
</StackPanel>
</Grid>
</Window>