This commit is contained in:
Meik
2026-03-05 09:56:57 +01:00
parent 838e6b1ee1
commit 4013fa8e32
827 changed files with 743038 additions and 0 deletions

View File

@@ -0,0 +1,66 @@
<Window x:Class="C4IT_CustomerPanel.forms.AnnouncementForm"
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"
mc:Ignorable="d"
Title="announcementForm"
Height="600"
Width="900"
ResizeMode="NoResize"
WindowStyle="None"
BorderBrush="Black"
BorderThickness="2"
PreviewMouseLeftButtonDown="LeftMouseDown_Event">
<Window.Effect>
<DropShadowEffect/>
</Window.Effect>
<Grid>
<StackPanel>
<TextBlock HorizontalAlignment="Right"
FontWeight="Bold"
FontSize="20"
PreviewMouseDown="OnCloseClicked"
Cursor="Hand"
Margin="0,0,10,0">X</TextBlock>
<StackPanel Orientation="Horizontal">
<StackPanel Background="#FFEAEAEA">
<Image Source="/C4IT_CustomerPanel;component/Resources/icons/light/appbar.newspaper.png" Style="{StaticResource ImageStyle}"/>
</StackPanel>
<StackPanel Orientation="Vertical" Background="#FFEAEAEA">
<TextBox Padding="5,5,0,0"
x:Name="TxtCreatedDate"
BorderBrush="{x:Null}"
HorizontalAlignment="left"
FontSize="14"
Background="#FFEAEAEA"
Width="875"
IsEnabled="False">asd</TextBox>
<TextBox Padding="5,10,0,10"
x:Name="TxtSubject"
FontSize="20"
BorderBrush="{x:Null}"
HorizontalAlignment="Left"
Width="875"
Background="#FFEAEAEA"
IsEnabled="False">subject</TextBox>
</StackPanel>
</StackPanel>
<Separator>
<Separator.Effect>
<DropShadowEffect Direction="320" ShadowDepth="4" Opacity="0.4"/>
</Separator.Effect>
</Separator>
<WebBrowser x:Name="WebMain"
Margin="0,4,0,0"
Height="475"
Width="880"
IsEnabled="False" />
</StackPanel>
</Grid>
</Window>