20 lines
605 B
XML
20 lines
605 B
XML
<Window
|
|
x:Class="BeWo.ownChat.ChatDokumentationsView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:view="clr-namespace:BeWo.View"
|
|
Title="Chat Dokumentation"
|
|
Width="800"
|
|
Height="500"
|
|
AllowsTransparency="True"
|
|
Background="Transparent"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterScreen"
|
|
WindowStyle="None">
|
|
<Grid x:Name="DokumentGrid">
|
|
<Border x:Name="popup_contentChat" MouseLeftButtonDown="RootGroupBox_OnMouseLeftButtonDown" />
|
|
</Grid>
|
|
</Window>
|
|
|
|
|