ui/winui/App.xaml.h

12 days ago

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 16 Mar 2025 13:53:30 +0100 (12 days ago)
changeset 500
95ab1710993f
parent 205
b1ac0dd1d38b
permissions
-rw-r--r--

fix nested box containers (Cocoa)

// Copyright (c) Microsoft Corporation and Contributors.
// Licensed under the MIT License.

#pragma once

#include "App.xaml.g.h"

namespace winrt::winui::implementation
{
    struct App : AppT<App>
    {
        App();

        void OnLaunched(Microsoft::UI::Xaml::LaunchActivatedEventArgs const&);

    private:
        winrt::Microsoft::UI::Xaml::Window window{ nullptr };
    };
}

mercurial