Files
SzmediTools/WPFUI.Test/ChatFunction/CustomChatWindow.xaml

21 lines
773 B
Plaintext
Raw Normal View History

2025-09-16 16:06:41 +08:00
<Window
x:Class="WPFUI.Test.CustomChatWindow"
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:local="clr-namespace:WPFUI.Test"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Title="对话窗口"
Width="800"
Height="450"
mc:Ignorable="d">
<Grid>
<!--<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Label Grid.Row="0" Content="设置" />-->
<local:ChatDialogue HorizontalAlignment="Stretch" VerticalAlignment="Stretch"/>
</Grid>
</Window>