17 lines
No EOL
779 B
XML
17 lines
No EOL
779 B
XML
<Page x:Class="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"
|
|
xmlns:local="clr-namespace:ExamplePlugin"
|
|
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
|
|
mc:Ignorable="d"
|
|
Title="AddRPCView" Height="Auto" Width="Auto"
|
|
Loaded="ExampleUi_OnLoaded">
|
|
<Grid>
|
|
<StackPanel>
|
|
<TextBlock Foreground="White">This is a Test Ui for the Example Plugin</TextBlock>
|
|
<TextBlock Name="TestLabel" Foreground="White" Text="{Binding LabelContent}"/>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Page> |