Jun 22, 2026, 12:41 PM

This commit is contained in:
Paweł Domański
2026-06-22 10:41:11 +00:00
parent 69ad714488
commit f41b1d3143
2 changed files with 17 additions and 1 deletions
+7
View File
@@ -50,6 +50,7 @@ $tvServers = $Window.FindName("tvServers")
$btnAddServer = $Window.FindName("btnAddServer") $btnAddServer = $Window.FindName("btnAddServer")
$btnRemoveServer = $Window.FindName("btnRemoveServer") $btnRemoveServer = $Window.FindName("btnRemoveServer")
$gridDetails = $Window.FindName("gridDetails") $gridDetails = $Window.FindName("gridDetails")
$menuHostSlunk = $Window.FindName("menuHostSlunk")
# Initialize connection states cache per server # Initialize connection states cache per server
$script:ServerConnectionStates = @{} $script:ServerConnectionStates = @{}
@@ -271,6 +272,12 @@ $btnRemoveServer.Add_Click({
} }
}) })
# Handle Main -> Host Slunk menu click
$menuHostSlunk.Add_Click({
Write-Log "Main -> Host Slunk menu item clicked."
[System.Windows.MessageBox]::Show("Host Slunk menu option selected.", "Host Slunk", "OK", "Information")
})
# 5. Connection logic # 5. Connection logic
$btnConnect.Add_Click({ $btnConnect.Add_Click({
$server = $txtServerName.Text $server = $txtServerName.Text
+10 -1
View File
@@ -1,7 +1,15 @@
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" <Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="DBAToolBox - MS SQL Management" Height="550" Width="850" Background="#F0F0F0"> Title="DBAToolBox - MS SQL Management" Height="550" Width="850" Background="#F0F0F0">
<Grid Margin="10"> <DockPanel>
<!-- Top Menu -->
<Menu DockPanel.Dock="Top" Background="#F5F5F5" BorderBrush="#CCCCCC" BorderThickness="0,0,0,1">
<MenuItem Header="Main">
<MenuItem x:Name="menuHostSlunk" Header="Host Slunk"/>
</MenuItem>
</Menu>
<Grid Margin="10">
<Grid.RowDefinitions> <Grid.RowDefinitions>
<RowDefinition Height="Auto"/> <RowDefinition Height="Auto"/>
<RowDefinition Height="*"/> <RowDefinition Height="*"/>
@@ -87,4 +95,5 @@
</Grid> </Grid>
</Grid> </Grid>
</Grid> </Grid>
</DockPanel>
</Window> </Window>