How to create a new window in UWP
---date: Feb 07, 2016
tags:
- C#
- UWP
language: English
---
This post is more than 10 years old. If this is a technical post, the post will most likely not working, but feel free to try it and see if it works.
Some friends of mine asked me how to create a window in UWP just like WinForms or UWP, to make their app more desktop-like. Actually, it is pretty simple.

I cannot say this is difficult or simple. In order to open a new window, You need to use CoreApplication.CreateNewView() to generate the Window, or view:
1 | var currentAV = ApplicationView.GetForCurrentView(); |
