This repository has been archived on 2023-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
cad/ref/xcad-examples/PMPage/cs/Controls/WpfUserControl.xaml
2022-10-15 19:16:08 +02:00

18 lines
860 B
XML

<UserControl x:Class="Xarial.XCad.Examples.PMPage.CSharp.Controls.WpfUserControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Xarial.XCad.Examples.PMPage.CSharp.Controls"
Background="Yellow"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<TextBlock Text="{Binding Path=Message}"
VerticalAlignment="Center"
HorizontalAlignment="Center"
TextWrapping="Wrap"
TextAlignment="Center"/>
</Grid>
</UserControl>