31 lines
1.1 KiB
XML
31 lines
1.1 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:cc="clr-namespace:ChatController;assembly=ChatController"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:BeWo.View"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
x:Name="ServiceChat"
|
|
Title="ChatService"
|
|
Width="900"
|
|
Height="700"
|
|
AllowsTransparency="True"
|
|
Background="Transparent"
|
|
Closing="ChatView_OnClosing"
|
|
ResizeMode="CanResizeWithGrip"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowStyle="None"
|
|
mc:Ignorable="d">
|
|
|
|
<Grid>
|
|
<GroupBox
|
|
x:Name="rootGroupBox"
|
|
Header="ownChat"
|
|
MouseLeftButtonDown="RootGroupBox_OnMouseLeftButtonDown"
|
|
Style="{DynamicResource MainContentGroupBoxWithMinMaxCloseBtnStyle}">
|
|
<cc:ChatMainControl x:Name="ChatMainControl" OnEmojii="ChatMainControl_OnOnEmoji" />
|
|
</GroupBox>
|
|
</Grid>
|
|
</Window>
|