I would like to embed a universal windows app into a classic windows application on windows 10. Is this possible?
相关问题
- Inheritance impossible in Windows Runtime Componen
- Why Isn't My Windows 10 PC Waking Up after a S
- How to prevent windows from accessing and detectin
- How does this JavaScript open Windows Settings in
- How to receive scriptNotify from html in appdata o
相关文章
- Python has stopped working
- Clear Back Stack Navigation Windows 10
- Show flyout using BottomAppBar
- Where do Windows “Product ID” and “Device ID” valu
- Xamarin Android Player Error when attempting to fi
- How can I use 100% of VRAM on a secondary GPU from
- Android Studio cannot be initialized (0xc0000005)
- Where is gacutil.exe in Windows 10?
The short answer is no. However... depending on what you're trying to do, the information below may help you.
If you just want to get the look and feel of a desktop application, you should be aware that Windows 10 apps (unlike Windows 8 apps) run in non-fullscreen mode by default, and can be resized. Desktop apps in Windows 10 have top-right icons (min/max/resize) that look similar to how UWP apps look in the title bar and top-right icons.
If you're creating a UWP app with XAML, you won't be able to embed it in a desktop application. However, if you're building a Windows 10 app using HTML5 and JavaScript, you could repackage it inside a browser control embedded in a desktop application.
If you're creating a game using a 3rd-party tool such as Unity, you can export it as a Windows desktop application just as easily as exporting to a UWP app for Windows 10. Unity can be used for non-game apps as well, so you could export it to a desktop application today, and still have the option of publish a UWP of the same game/app.
If you were thinking of accessing the full Windows SDK from you UWP app, you won't be able to do so, as you will be restricted by the UWP sandbox. But Windows 10 has made many improvements in helping you get access to many advanced features, e.g. accessing certain locations in the file system, so you may be able to get by with all that UWP has to offer.
If you want to avoid the Windows Store, you may sideload your app, as suggested by an earlier comment.
Hope that helps! :)