ui/winui/MainWindow.xaml

Wed, 11 Oct 2023 19:11:38 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Wed, 11 Oct 2023 19:11:38 +0200
branch
newapi
changeset 207
93b9f502cb88
parent 205
b1ac0dd1d38b
child 211
5d71a36b833b
permissions
-rw-r--r--

add toolbar appmenu and menu buttons

<?xml version="1.0" encoding="utf-8"?>
<Window
    x:Class="winui.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:winui"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Window.SystemBackdrop>
        <MicaBackdrop />

    </Window.SystemBackdrop>

    <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
        <Button x:Name="myButton" Click="myButton_Click">Click Me !</Button>
    </StackPanel>
</Window>

mercurial