Reputation: 460
I'm working in raspberry pi 3 with windows 10 IOT core operating system. By using visual studio 2015 i am developing universal windows apps and i can able to run the UWP in raspberry pi 3 by using remote server in visual studio 2015. but i want to run the winforms application in raspberry pi 3. can anyone help me please??
Upvotes: 0
Views: 1929
Reputation: 589
Best option is to rewrite your application to an C#/XAML or VB/XAML project. I have to admit, it's a lot of work, and you will spend some time to learn these new type of application.
You can find a lot of good documentation here to help you from scratch that worked for me.
Upvotes: 0
Reputation: 1680
WinForms is not supported on Windows 10 IOT. You will need to write your applications for the Universal Windows Platform (UWP).
EDIT: From my comment below, you can bring your WinForms or WPF apps to Windows 10 using the Desktop Bridge - https://msdn.microsoft.com/en-gb/windows/uwp/porting/desktop-to-uwp-root#start-the-conversion-process
Upvotes: 0