18 lines
936 B
XML
18 lines
936 B
XML
<Window x:Class="ownChat.ChatEmojisView"
|
|
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:ownChat"
|
|
xmlns:hauptKlassen="clr-namespace:ChatController.HauptKlassen;assembly=ChatController"
|
|
xmlns:cc="clr-namespace:ChatController;assembly=ChatController"
|
|
mc:Ignorable="d"
|
|
Title="ChatEmojisView" x:Name="ChatEmojiView" Icon="pack://application:,,,/ChatController;component/Ressourcen/ownchat_icon.png"
|
|
Height="150" Width="300" WindowStartupLocation="Manual" WindowStyle="None" Deactivated="ChatEmojisView_OnFocusableChanged">
|
|
<Grid>
|
|
|
|
<cc:ChatEmojiiControl x:Name="cem" ></cc:ChatEmojiiControl>
|
|
|
|
</Grid>
|
|
</Window>
|