WeeXnesSuite/ExamplePlugin/ExampleUi.xaml
2025-04-09 08:05:58 +02:00

13 lines
No EOL
562 B
XML

<Page x:Class="ExamplePlugin.ExampleUi"
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"
mc:Ignorable="d"
Title="HomeView" Height="Auto" Width="Auto">
<Grid>
<StackPanel>
<TextBlock Foreground="White">This is a Test Ui for the Example Plugin</TextBlock>
</StackPanel>
</Grid>
</Page>