36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
<Window x:Class="SQLMan.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:SQLMan"
|
|
mc:Ignorable="d"
|
|
Title="SQL Broo" Height="450" Width="800">
|
|
<Grid>
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
</Grid.RowDefinitions>
|
|
<Button Grid.Row="0"
|
|
Content="Select SQL Script"
|
|
Click="SelectButonClick"/>
|
|
<TextBox Grid.Row="1"
|
|
Margin="3"
|
|
IsEnabled="False"
|
|
Name="SkriptTextBox"/>
|
|
<StackPanel Grid.Row="2"
|
|
Orientation="Horizontal">
|
|
<Label>Connection String</Label>
|
|
<TextBox Width="500"
|
|
Name="ConnectionTextBox"/>
|
|
</StackPanel>
|
|
<Button Grid.Row="3"
|
|
Content="Execute SQL Script"
|
|
Click="ExecuteButonClick"/>
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|