ui/winui/App.xaml.h

Wed, 02 Apr 2025 19:48:45 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Wed, 02 Apr 2025 19:48:45 +0200
changeset 546
5b00f1e55f4e
parent 205
b1ac0dd1d38b
permissions
-rw-r--r--

implement ui_widget_set_size and ui_widget_redraw (QT)

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