Sicherung

This commit is contained in:
maier_S
2022-03-23 10:04:29 +01:00
parent eb5c2fa502
commit f28abfee62
15 changed files with 253 additions and 87 deletions

View File

@@ -0,0 +1,39 @@
<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>

View File

@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace FSI.BT.Tools.Gui
{
/// <summary>
/// Interaktionslogik für FrmProcesses.xaml
/// </summary>
public partial class FrmProcesses : Window
{
public FrmProcesses()
{
InitializeComponent();
}
}
}