Initial commit: IT Nexus Web-App

This commit is contained in:
2026-06-01 20:49:07 +02:00
commit 8023765e6c
387 changed files with 106900 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<Window x:Class="ITNexusAgent.UI.MessageDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Nachricht an IT senden"
Width="400" Height="220"
WindowStartupLocation="CenterOwner"
ResizeMode="NoResize" Background="White" FontFamily="Segoe UI">
<StackPanel Margin="20">
<TextBlock Text="Nachricht an das IT-Team" FontSize="13" FontWeight="SemiBold"
Foreground="#1F2937" Margin="0,0,0,12"/>
<TextBox x:Name="MessageBox" Height="80" TextWrapping="Wrap" AcceptsReturn="True"
Padding="8" FontSize="12" BorderBrush="#D1D5DB"
VerticalScrollBarVisibility="Auto"/>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,14,0,0">
<Button Content="Abbrechen" Width="80" Height="32" Margin="0,0,8,0"
Click="Cancel_Click" Background="#F9FAFB" BorderBrush="#D1D5DB" FontSize="12"/>
<Button Content="Senden" Width="80" Height="32"
Click="Send_Click" Background="#0078D4" Foreground="White"
BorderThickness="0" FontSize="12" FontWeight="SemiBold"/>
</StackPanel>
</StackPanel>
</Window>