Do simple Windows Forms/WPF apps work on Windows 8 for tablets?

前端 未结 6 1799
执念已碎
执念已碎 2021-02-01 04:53

I\'m developing a C# .NET business application that needs to work on Windows 7, Windows 8 and Windows 8 Tablet.

  1. Do \"simple\" Windows Forms applications work on bo
6条回答
  •  逝去的感伤
    2021-02-01 05:43

    1. Yes, regular ol' windows forms will work on Windows 8. They'll work on whatever operating system supports your target .NET Framework version. They may not run on the Windows RT tablet, but tablets running full Windows 8 will be fine.
    2. There's no tablet emulator, but you can get Windows 8 running on an HP Slate 500, or (what I'm doing) run Windows 8 with touch control via Parallels on an iPad.
    3. You can develop your app in Silverlight/WPF and have it work well in Windows 7 and 8, but also Windows RT (for ARM tablets). Or HTML5 apps are an option as well.

提交回复
热议问题