Files
DBAdmin/toolbox/UI/MainWindow.xaml
T
2026-05-28 06:53:37 +00:00

30 lines
1.5 KiB
XML

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="DBAToolBox - MS SQL Management" Height="450" Width="600" Background="#F0F0F0">
<Grid Margin="10">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<!-- Header -->
<TextBlock Text="DBAToolBox" FontSize="24" FontWeight="Bold" Foreground="#2D3E50" Margin="0,0,0,10"/>
<!-- Connection Panel -->
<StackPanel Grid.Row="1" Orientation="Horizontal" Margin="0,0,0,10">
<Label Content="Server Name:" VerticalAlignment="Center"/>
<TextBox x:Name="txtServerName" Width="250" VerticalAlignment="Center" Margin="5,0,10,0" Padding="3"/>
<Button x:Name="btnConnect" Content="Connect &amp; Test" Width="120" Padding="5" Background="#007ACC" Foreground="White" BorderThickness="0"/>
</StackPanel>
<!-- Main Content Area -->
<GroupBox Grid.Row="2" Header="Server Information" Margin="0,0,0,10">
<DataGrid x:Name="dgServerInfo" AutoGenerateColumns="True" IsReadOnly="True" Background="White"/>
</GroupBox>
<!-- Log Area -->
<TextBox Grid.Row="3" x:Name="txtLogs" Height="100" IsReadOnly="True" VerticalScrollBarVisibility="Auto" Background="#E8E8E8" FontFamily="Consolas" FontSize="11" TextWrapping="Wrap"/>
</Grid>
</Window>