Sicherung

This commit is contained in:
Maier Stephan SI
2023-01-20 16:09:00 +01:00
parent e5257d8413
commit b684704bf8
139 changed files with 95678 additions and 499 deletions

View File

@@ -1,14 +1,18 @@
<Window x:Class="FSI.BT.Tools.FrmRadialMenu"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:FSI.BT.Tools"
xmlns:RadialMenu="clr-namespace:RadialMenu.Controls;assembly=RadialMenu"
xmlns:RadialMenuProvider="clr-namespace:FSI.BT.Tools.RadialMenu"
xmlns:commands="clr-namespace:FSI.BT.Tools.Commands"
xmlns:wpfCtrl="http://wpfcontrols.com/"
SizeToContent="WidthAndHeight"
WindowStyle="None"
ShowInTaskbar="False"
AllowsTransparency="True"
Background="Transparent"
Deactivated="Window_Deactivated"
Activated="Window_Activated"
Loaded="Window_Loaded">
<Window.Resources>
@@ -39,6 +43,7 @@
FontSize="10" />
</StackPanel>
<RadialMenu:RadialMenu IsOpen="{Binding IsOpenHome}">
<RadialMenu:RadialMenu.CentralItem>
@@ -207,7 +212,7 @@
</RadialMenu:RadialMenuItem>
<RadialMenu:RadialMenuItem Command="{commands:CmdCommand}"
CommandParameter="EplPrj">
CommandParameter="Epl.Prj">
<WrapPanel Orientation="Vertical">
<Rectangle Width="35"
Height="35">
@@ -223,7 +228,7 @@
</RadialMenu:RadialMenuItem>
<RadialMenu:RadialMenuItem Command="{commands:CmdCommand}"
CommandParameter="EplPdf">
CommandParameter="Epl.Pdf">
<WrapPanel Orientation="Vertical">
<Rectangle Width="35"
Height="35">
@@ -239,7 +244,7 @@
</RadialMenu:RadialMenuItem>
<RadialMenu:RadialMenuItem Command="{commands:CmdCommand}"
CommandParameter="EplPdfMgt">
CommandParameter="Epl.PdfMgt">
<WrapPanel Orientation="Vertical">
<Rectangle Width="35"
Height="35">
@@ -728,7 +733,7 @@
</RadialMenu:RadialMenu.CentralItem>
<RadialMenu:RadialMenuItem Command="{commands:CmdCommand}"
CommandParameter="PL1Pls">
CommandParameter="PL1.Pls">
<WrapPanel Orientation="Vertical">
<Rectangle Width="30"
Height="30">
@@ -744,7 +749,7 @@
</RadialMenu:RadialMenuItem>
<RadialMenu:RadialMenuItem Command="{commands:CmdCommand}"
CommandParameter="PL1Lst">
CommandParameter="PL1.Lst">
<WrapPanel Orientation="Vertical">
<Rectangle Width="30"
Height="30">
@@ -775,7 +780,7 @@
</RadialMenu:RadialMenu.CentralItem>
<RadialMenu:RadialMenuItem Command="{commands:CmdCommand}"
CommandParameter="PL2Alg">
CommandParameter="PL2.Alg">
<WrapPanel Orientation="Vertical">
<Rectangle Width="30"
Height="30">
@@ -792,7 +797,7 @@
<RadialMenu:RadialMenuItem Command="{commands:CmdCommand}"
CommandParameter="PL2Pls">
CommandParameter="PL2.Pls">
<WrapPanel Orientation="Vertical">
<Rectangle Width="30"
Height="30">
@@ -808,7 +813,7 @@
</RadialMenu:RadialMenuItem>
<RadialMenu:RadialMenuItem Command="{commands:CmdCommand}"
CommandParameter="PL2Als">
CommandParameter="PL2.Als">
<WrapPanel Orientation="Vertical">
<Rectangle Width="30"
Height="30">
@@ -824,7 +829,7 @@
</RadialMenu:RadialMenuItem>
<RadialMenu:RadialMenuItem Command="{commands:CmdCommand}"
CommandParameter="PL2Lst">
CommandParameter="PL2.Lst">
<WrapPanel Orientation="Vertical">
<Rectangle Width="30"
Height="30">
@@ -840,7 +845,7 @@
</RadialMenu:RadialMenuItem>
<RadialMenu:RadialMenuItem Command="{commands:CmdCommand}"
CommandParameter="PL2Nc">
CommandParameter="PL2.Nc">
<WrapPanel Orientation="Vertical">
<Rectangle Width="30"
Height="30">
@@ -856,7 +861,7 @@
</RadialMenu:RadialMenuItem>
<RadialMenu:RadialMenuItem Command="{commands:CmdCommand}"
CommandParameter="PL2Key">
CommandParameter="PL2.Key">
<WrapPanel Orientation="Vertical">
<Rectangle Width="30"
Height="30">
@@ -887,7 +892,7 @@
</RadialMenu:RadialMenu.CentralItem>
<RadialMenu:RadialMenuItem Command="{commands:CmdCommand}"
CommandParameter="PL3Pls">
CommandParameter="PL3.Pls">
<WrapPanel Orientation="Vertical">
<Rectangle Width="30"
Height="30">
@@ -903,7 +908,7 @@
</RadialMenu:RadialMenuItem>
<RadialMenu:RadialMenuItem Command="{commands:CmdCommand}"
CommandParameter="PL3Lst">
CommandParameter="PL3.Lst">
<WrapPanel Orientation="Vertical">
<Rectangle Width="30"
Height="30">
@@ -1109,19 +1114,75 @@
</RadialMenu:RadialMenu>
<Grid HorizontalAlignment="Center"
VerticalAlignment="Center">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="15" />
<ColumnDefinition Width="20" />
<ColumnDefinition Width="15" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="15" />
<RowDefinition Height="15" />
<RowDefinition Height="15" />
</Grid.RowDefinitions>
<Button x:Name="btnVolUp"
Grid.Row="0"
Grid.Column="0"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Background="Transparent"
BorderBrush="Transparent"
Click="btnVolUp_Click" />
<Button x:Name="btnVolDwn"
Grid.Row="2"
Grid.Column="0"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Background="Transparent"
BorderBrush="Transparent"
Click="btnVolDwn_Click" />
<Button x:Name="btnMute"
Grid.Row="1"
Grid.Column="2"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Background="Transparent"
BorderBrush="Transparent"
Click="btnMute_Click" />
</Grid>
</Grid>
<Grid Width="300"
<Grid Width="200"
Height="50"
Canvas.Bottom="0">
Canvas.Bottom="0"
Canvas.Left="50">
<StackPanel Width="Auto"
HorizontalAlignment="Stretch"
Margin="5 5 5 5 ">
<TextBox x:Name="tbCmd"
<wpfCtrl:AutoCompleteTextBox x:Name="tbCmd"
FontSize="20"
Background="White"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Provider="{Binding Provider}"
Text="{Binding Path=Cmd, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
KeyDown="tbCmd_KeyDown"
Watermark="Cmd eingeben">
</wpfCtrl:AutoCompleteTextBox>
<!--<TextBox x:Name="tbCmd"
FontSize="20"
KeyDown="tbCmd_KeyDown"
TextChanged="tbCmd_TextChanged" />
TextChanged="tbCmd_TextChanged" />-->
</StackPanel>
</Grid>