Reputation: 35
Hi i want to create a shaped windows form in uwp with c#. How can I do that? I have not found in internet such topic for uwp but there are examples for winform.
Upvotes: 0
Views: 722
Reputation: 154995
UWP and WinForms are distinct UI platforms.
In addition to being a UI platform, UWP applications also must run in a sandbox (only Microsoft's own apps can break-out of the sandbox, such as the Settings app).
UWP is very restrictive with respect to what developers can do with the UI toolkit and window appearance, for example:
Because UWP is so restrictive it really limits the usefulness of the platform outside of simple "toy" applications or 'app'-style programs with a very limited feature set (i.e. UWP is inappropriate for something like Photoshop, Visual Studio - or anything requiring system integration - but okay for things like chat clients).
So anyway, what you're asking to do is impossible.
Upvotes: 3