ui/winui/App.xaml.h

Sun, 07 Dec 2025 12:09:04 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 07 Dec 2025 12:09:04 +0100
changeset 962
7016bcb8d38b
parent 205
b1ac0dd1d38b
permissions
-rw-r--r--

add webview width/height args and add gtk function for widget size requests

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