You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
601 B
23 lines
601 B
<?xml version="1.0" encoding="utf-8"?> |
|
<UserControl |
|
x:Class="ICSharpCode.ServerTools.ServerControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
Height="300" |
|
Width="300"> |
|
<DockPanel> |
|
<ToolBar |
|
DockPanel.Dock="Top" |
|
Name="serverToolBar" |
|
Grid.Column="0" |
|
Grid.Row="0"> |
|
<Button |
|
Name="refreshButton">R</Button> |
|
<Button |
|
Name="stopRefreshButton">S</Button> |
|
<Button |
|
Name="addConnectionButton">A</Button> |
|
</ToolBar> |
|
<TreeView |
|
Name="serverTree"> |
|
</TreeView> |
|
</DockPanel> |
|
</UserControl> |