Files
Cleaner/Cleaner-IconAdd/root.xaml
Florian Späth 6ba4884590 init
2025-01-31 01:47:45 +01:00

35 lines
3.1 KiB
XML

<?xaml encoding="utf-8"?>
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wfi="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
xmlns:winForms="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
Name="IconAdd" Title="Cleaner - IconAdd" Height="291.5" Width="238.5" ResizeMode="NoResize">
<Window.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.InactiveSelectionHighlightBrushKey}" Color="#0082c6"/>
<SolidColorBrush x:Key="{x:Static SystemColors.InactiveSelectionHighlightTextBrushKey}" Color="#022335"/>
</Window.Resources>
<Grid Background="#00344E">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Label Content="Pfade auswählen" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Height="154" Width="200" Background="#013C5A" Foreground="White" FontSize="16" FontWeight="Bold" HorizontalContentAlignment="Center"/>
<Button TabIndex="7" Name="btnok" Content="Übernehmen" BorderThickness="0" HorizontalAlignment="Left" Margin="10,209,0,0" VerticalAlignment="Top" Width="200" Height="33" FontSize="20" FontWeight="Bold" Background="green" Foreground="white">
<Button.Resources>
<Style TargetType="Border">
<Setter Property="CornerRadius" Value="2"/>
</Style>
</Button.Resources>
</Button>
<Button Name="btncleaner" Content="..." HorizontalAlignment="Left" Margin="171,49,0,0" VerticalAlignment="Top" Width="23"/>
<Button Name="btnfile" Content="..." HorizontalAlignment="Left" Margin="171,74,0,0" VerticalAlignment="Top" Width="23"/>
<Label Content="Cleaner Ordner" HorizontalAlignment="Left" Margin="19,46,0,0" VerticalAlignment="Top" Width="147" Foreground="white"/>
<Label Content="Icon Vorlage" HorizontalAlignment="Left" Margin="19,71,0,0" VerticalAlignment="Top" Width="147" Foreground="white"/>
<TextBlock Name="tbcleaner" HorizontalAlignment="Left" Margin="24,97,0,0" TextWrapping="Wrap" Text="Cleaner:" VerticalAlignment="Top" Width="170" Foreground="white" Height="31"/>
<TextBlock Name="tbfile" HorizontalAlignment="Left" Margin="24,128,0,0" TextWrapping="Wrap" Text="Icon:" VerticalAlignment="Top" Width="170" Foreground="white" Height="32"/>
<CheckBox Name="cbo" Content="Office" HorizontalAlignment="Left" Margin="39,169,0,0" VerticalAlignment="Top" Width="56" Foreground="white"/>
<CheckBox Name="cbb" Content="Bilder" HorizontalAlignment="Left" Margin="122,169,0,0" VerticalAlignment="Top" Width="58" Foreground="white"/>
<CheckBox Name="cbv" Content="Videos" HorizontalAlignment="Left" Margin="39,189,0,0" VerticalAlignment="Top" Width="58" Foreground="white"/>
<CheckBox Name="cba" Content="Audios" HorizontalAlignment="Left" Margin="122,189,0,0" VerticalAlignment="Top" Width="58" Foreground="white"/>
</Grid>
</Window>