40 lines
1.6 KiB
XML
40 lines
1.6 KiB
XML
<Window x:Class="FSI.BT.Tools.Gui.FrmProcesses"
|
|
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:FSI.BT.Tools.Gui"
|
|
mc:Ignorable="d"
|
|
Title="FrmProcesses"
|
|
Height="450"
|
|
Width="800">
|
|
<Grid>
|
|
<TabControl>
|
|
<TabItem Header="WinCC">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<StackPanel Orientation="Horizontal">
|
|
<TextBlock Text="Fenster-Name:" Margin="5 5 5 5"/>
|
|
<TextBox x:Name="TbWindowName"
|
|
MinWidth="200"
|
|
Margin="5 5 5 5" />
|
|
</StackPanel>
|
|
<StackPanel Grid.Row="1" Orientation="Horizontal">
|
|
<TextBlock Text="Class-Name:"
|
|
Margin="5 5 5 5" />
|
|
<TextBox x:Name="TbClassName"
|
|
MinWidth="200"
|
|
Margin="5 5 5 5" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</TabItem>
|
|
</TabControl>
|
|
|
|
</Grid>
|
|
</Window>
|