67 lines
2.8 KiB
XML
67 lines
2.8 KiB
XML
<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>
|