forked from dotnetprojects/DotNetSiemensPLCToolBoxLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSelectPortalInstance.xaml
More file actions
13 lines (13 loc) · 904 Bytes
/
SelectPortalInstance.xaml
File metadata and controls
13 lines (13 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
<Window x:Class="DotNetSiemensPLCToolBoxLibrary.TIAV21.SelectPortalInstance"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d" WindowStyle="ToolWindow" WindowStartupLocation="CenterScreen"
Height="450" Width="800">
<Grid>
<ListBox x:Name="lstInstances" Margin="10,31,10,64"/>
<TextBlock HorizontalAlignment="Left" Margin="10,10,0,0" TextWrapping="Wrap" Text="Select Portal Instance" VerticalAlignment="Top"/>
<Button Content="Ok" HorizontalAlignment="Right" Margin="0,0,10,10" VerticalAlignment="Bottom" Width="130" Height="49" Click="Button_Click"/>
</Grid>
</Window>