Files
BeWoPlaner/BeWo/ownChat/ChatView.xaml

19 lines
1.0 KiB
XML

<Window x:Class="BeWo.ownChat.ChatView"
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"
xmlns:local="clr-namespace:BeWo.View"
xmlns:cc="clr-namespace:ChatController;assembly=ChatController"
mc:Ignorable="d" x:Name="ServiceChat"
Title="ChatService" Height="700" Width="900" ResizeMode="CanResizeWithGrip"
WindowStartupLocation="CenterScreen" WindowStyle="None"
AllowsTransparency="True" Background="Transparent" Closing="ChatView_OnClosing">
<Grid>
<GroupBox Header="ownChat" x:Name="rootGroupBox" Style="{DynamicResource MainContentGroupBoxWithMinMaxCloseBtnStyle}" MouseLeftButtonDown="RootGroupBox_OnMouseLeftButtonDown">
<cc:ChatMainControl x:Name="ChatMainControl" OnEmojii="ChatMainControl_OnOnEmoji" />
</GroupBox>
</Grid>
</Window>