Click here to Skip to main content
15,867,568 members
Articles / Desktop Programming / XAML

UWPLib: Include XAML Controls in Plain Win32

Rate me:
Please Sign up or sign in to vote.
5.00/5 (16 votes)
4 Feb 2020CPOL2 min read 43.6K   33   14
A quick way to add UWP controls into plain Win32 apps for Windows 10

Introduction

Microsoft keeps inventing new frameworks but eventually it's plain old Win32 that wins. Here is a way, based on the new C++ 17/WinRT API to wrap any UWP control inside a plain C++ Win32 application.

You need VS 2017+, Windows 10 build 1903 or later, a recent Windows SDK (17763+) and link against "windowsapp.lib" (Nothing related to precompiled headers discussed in the above page is required).

UWP

UWP provides us some nice controls, found here. We first have to initialize winrt and then WindowsXamlManager:

C++
#include <winrt/base.h>
#include <atlbase.h>
#include <winrt/Windows.system.h>
#include <winrt/Windows.UI.Core.h>
#include <winrt/Windows.UI.Input.Inking.h>
#include <winrt/Windows.UI.Text.h>
#include <winrt/Windows.Foundation.h>
#include <winrt/Windows.Foundation.Collections.h>
#include <winrt/Windows.UI.Xaml.Hosting.h>
#include <winrt/Windows.UI.Xaml.Controls.h>
#include <winrt/Windows.UI.Xaml.Controls.Primitives.h>
#include <winrt/Windows.UI.Xaml.Data.h>
#include <winrt/Windows.UI.Xaml.Media.h>
#include <windows.ui.xaml.hosting.desktopwindowxamlsource.h>
#include <winrt/Windows.UI.Xaml.Markup.h>
#pragma comment(lib, "windowsapp")

using namespace winrt;
using namespace Windows::Foundation;
using namespace Windows::Foundation::Collections;
using namespace Windows::Foundation::Numerics;
using namespace Windows::UI;
using namespace Windows::UI::Composition;
using namespace Windows::UI::Core;
using namespace Windows::UI::Text;
using namespace Windows::UI::Input::Inking;
using namespace Windows::UI::Xaml;
using namespace Windows::UI::Xaml::Data;
using namespace Windows::UI::Xaml::Hosting;
using namespace Windows::UI::Xaml::Controls;
using namespace Windows::Media::Core;
using namespace Windows::UI::Xaml::Markup;

winrt::init_apartment(apartment_type::single_threaded);
WindowsXamlManager windowsXamlManager = WindowsXamlManager::InitializeForCurrentThread();

The operations are provided by DesktopWindowXamlSource as an interop interface:

C++
DesktopWindowXamlSource xs;
auto interopDetail = xs.as<IDesktopWindowXamlSourceNative>();
interopDetail->AttachToWindow(hh);
interopDetail->get_WindowHandle(&s->hwndDetailXamlIsland);
                
winrt::param::hstring str(LR"(
    <Grid Name="MainGrid" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<CalendarView />
    </Grid>)");

winrt::Windows::Foundation::IInspectable ins = XamlReader::Load(str);
xs.Content(ins.as<UIElement>()); 

All this is really plain COM. as() is like the old QueryInterface in a template form. We attach the control to our own HWND and we also get an "inner" HWND, created by the framework. To create the control, we use XAML, XML or HTML like control configuration. In this case, we specify a calendar inside a grid. We need a hstring (a winrt string). We can use the winrt::param::hstring wrapper (like _bstr_t). Finally, we load the string to an IInspectable (the base interface like IUnknown) using XamlReader and finally, we load it to the DesktopWindowXamlSource.

To interact with the control, we can use the as() to get a type. For example, if I load a button:

XML
<Button xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Name="BX">BBBB</Button>

We can mess with it:

C++
Button butt = ins.as<Button>();
butt.Content(box_value(L"Hi"));

I found the class from Button in MSDN so you can use any "member function".

To get events about the button, we can use WinRT event handling along with some nice lambdas:

C++
butt.Click([](const IInspectable&  sender, const RoutedEventArgs& rea)
            {
                sender.as<winrt::Windows::UI::Xaml::Controls::Button>().Content
                         (box_value(L"Clicked"));
            });        

Each "callback" takes the IInspectable reference as the first parameter. The rest of the parameters are found in the documentation, for example, the Click() takes a RouterEventArgs argument.

UWPLib

UWPLib is a project to represent UWP controls as Win32 controls with messages and notifications.

  1. Create an app with the attached manifest
  2. Call winrt::init_apartment(apartment_type::single_threaded)
  3. Call WindowsXamlManager::InitializeForCurrentThread()
  4. Call function Register()

After that, you create UWP windows with the UWP_Custom class, then use WM_SETTEXT to load the markup. This is used by my new TurboTransfer app:

XML
    auto pv = LR"(<Pivot xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" >
    <PivotItem Header="Items">
            <ListView Name="GridItems"/>
    </PivotItem>
    <PivotItem Header="Transfers">
            <ListView Name="TransferItems"/>
    </PivotItem>
    <PivotItem Header="Add">
        <StackPanel>
            <Button x:Name="btn1" Content="Add Files" Margin="5" Width="150" />
            <Button x:Name="btn2" Content="Add Directory" Margin="5" Width="150" />
        </StackPanel>
    </PivotItem>
    <PivotItem Header="Upload">
        <StackPanel>
        </StackPanel>
    </PivotItem>
    <PivotItem Header="Configuration">
        <StackPanel>
            <TextBox Name="portnum" Margin="5" Header="Port Number" Text="7001"/>
            <CheckBox Name="CB_RightClick" Content="Enable right click" />
            <CheckBox Name="CB_ForceOctetStream" 
             Content="Force MIME application/octet-stream" />
            <TextBox x:Name="ip" Margin="5" Header="IP or Hostname (Empty = default) " />
        </StackPanel>
    </PivotItem>
</Pivot>)";

        SetWindowText(GetDlgItem(hh, 901), pv);
        UWPLIB::UWPCONTROL* u = (UWPLIB::UWPCONTROL*)SendDlgItemMessage
                                (hh, 901, UWPM_GET_CONTROL, 0, 0);
        pivot = u->ins.as<Pivot>();

Image 1

Image 2

Image 3

Image 4

Image 5

Image 6

Image 7

Image 8

The Project

The project uses the programming aspects discussed here to create some UWP controls, displayed above. Have fun with it. I used it in my big FluentTorrent:

Image 9

In addition, there is a DLL and Win32 project that demonstrates using an UWP menu in a plain win32 app, with a function that can convert a HMENU to an UWP menu.

History

  • 4th February, 2020: More screenshots and controls, added DLL+Win32 app
  • 20th March, 2019: Converted to single lib file
  • 18th March, 2019: Added UWP library
  • 14th March, 2019: First release

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Greece Greece
I'm working in C++, PHP , Java, Windows, iOS, Android and Web (HTML/Javascript/CSS).

I 've a PhD in Digital Signal Processing and Artificial Intelligence and I specialize in Pro Audio and AI applications.

My home page: https://www.turbo-play.com

Comments and Discussions

 
QuestionCould you provide a working sample of using data binding for this project? Pin
pcuzn1-Dec-20 19:29
pcuzn1-Dec-20 19:29 
AnswerRe: Could you provide a working sample of using data binding for this project? Pin
Michael Chourdakis5-Apr-21 7:51
mvaMichael Chourdakis5-Apr-21 7:51 
QuestionTo use the UWP controls, does it mean my Win32 application has to run under UWP mode aka UWP app? Pin
Shao Voon Wong6-Feb-20 17:24
mvaShao Voon Wong6-Feb-20 17:24 
AnswerRe: To use the UWP controls, does it mean my Win32 application has to run under UWP mode aka UWP app? Pin
Michael Chourdakis7-Feb-20 9:51
mvaMichael Chourdakis7-Feb-20 9:51 
QuestionPlease clearly state if this requires Win 10 v. => 1903 in the introduction to this article ... if that is the case Pin
BillWoodruff28-Mar-19 12:55
professionalBillWoodruff28-Mar-19 12:55 
AnswerRe: Please clearly state if this requires Win 10 v. => 1903 in the introduction to this article ... if that is the case Pin
Michael Chourdakis28-Mar-19 20:03
mvaMichael Chourdakis28-Mar-19 20:03 
QuestionIt doesn't work Pin
mikeduglas28-Mar-19 4:44
mikeduglas28-Mar-19 4:44 
AnswerRe: It doesn't work Pin
Michael Chourdakis28-Mar-19 7:02
mvaMichael Chourdakis28-Mar-19 7:02 
GeneralRe: It doesn't work Pin
mikeduglas28-Mar-19 11:07
mikeduglas28-Mar-19 11:07 
GeneralMy vote of 5 Pin
TheRaven18-Mar-19 20:44
TheRaven18-Mar-19 20:44 
GeneralRe: My vote of 5 Pin
.:floyd:.11-Apr-19 6:18
.:floyd:.11-Apr-19 6:18 
GeneralRe: My vote of 5 Pin
TheRaven11-Apr-19 6:35
TheRaven11-Apr-19 6:35 
Yup.

Using WPF front-end with any c compatible language; could use the author's libs with Google Go too by rigging up the c run-time interfaces of the language as an example. The author's work has much more to it than simply just creating a cool library allowing a C program WPF UI/UX experience --it's a cool c based api to wpf.

Kind of awesome.
I was unaware of that...

GeneralRe: My vote of 5 Pin
.:floyd:.18-Apr-19 20:25
.:floyd:.18-Apr-19 20:25 
QuestionGood Stuff Pin
TheRaven18-Mar-19 13:31
TheRaven18-Mar-19 13:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.