ui/winui/App.xaml.h

6 weeks ago

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 16 Feb 2025 22:49:09 +0100 (6 weeks ago)
changeset 466
7c78b0b8b77d
parent 205
b1ac0dd1d38b
permissions
-rw-r--r--

add support for dynamic sublists (GTK)

// 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