17 lines
631 B
XML
17 lines
631 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<UserControl x:Class="api.UIWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:api"
|
|
Height="300" Width="400">
|
|
|
|
<StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
|
|
<TextBlock Name="HelloText" Text="Hello, Noesis GUI!" FontSize="24" Margin="10"/>
|
|
|
|
<Button Content="Click Me" Width="200" Height="50" Margin="10"/>
|
|
|
|
</StackPanel>
|
|
|
|
</UserControl>
|