我已經在我的Raspberry Pi 2上安裝了Windows 10 IoT。我如何創建將在Pi上運行的窗體應用程序? 我已經在我的Visual Studio中安裝了Windows Iot Core,但現在它只說背景應用程序(IoT),但我想創建一些顯示文本的圖形...Raspberry Pi的Visual Studio Iot應用程序
0
A
回答
2
請確保您具有IoT Core模板Visual Studio 2015從這裏開始: https://visualstudiogallery.msdn.microsoft.com/55b357e1-a533-43ad-82a5-a88ac4b01dec
在Windows 10 IoT核心上,您可以使用可視界面運行Windows 10 Universal應用程序(UWP)。在Visual Studio中,用您選擇的編程語言啓動一個新的「通用Windows」項目。然後,您可以使用XAML編寫GUI,就像桌面或移動Windows 10應用程序一樣。例如對於C#使用Visual C# - > Universal - > Blank App(通用Windows)。
您需要使用Windows SDK但就是在Visual Studio 2015年包括更新1
訪問設備(如GPIO)的獨特功能,你需要添加一個參考的「Windows物聯網擴展SDK」 。如何做到這一點
例子:
- 看到這個倉庫於多種不同的應用程序的樣本(你可以下載所有的ZIP和他們一起玩):https://github.com/ms-iot/samples
- 示例教程:https://developer.microsoft.com/en-us/windows/iot/win10/startcoding
相關問題
- 1. 將Windows IoT應用程序永久安裝到Raspberry Pi
- 2. Raspberry Pi IOT控制器
- 3. RFID RC522 Raspberry PI 2 Windows IOT
- 4. Windows iot(c#) - Raspberry PI - I2C
- 5. Windows IoT Raspberry Pi 3 C#GetDiskFreeSpace
- 6. 我可以在Windows 10 IOT - Raspberry Pi 3中使用Visual Basic 6程序嗎?
- 7. 寫Raspberry Pi程序,沒有Raspberry Pi
- 8. Windows 10 iot部署到Raspberry Pi 3
- 9. Raspberry Pi嵌入式應用程序
- 10. IBM IoT Raspberry Pi Connection拒絕未授權
- 11. 使用遠程服務器(IoT)遠程控制Raspberry Pi或Arduino
- 12. Azure,Android,Raspberry Pi
- 13. Raspberry Pi程序延遲
- 14. Raspberry Pi Auto啓動程序
- 15. Raspberry Pi上的Kinect 2.0
- 16. 如何使用Visual Studio 2015遠程調試Raspberry Pi 3上的C#.NET 4.5 WinForms應用程序?
- 17. Raspberry Pi CPU溫度
- 18. 如何將Visual Studio Remotetools加載到我的Raspberry IoT上?
- 19. Raspberry PI上的多線程C程序
- 20. Raspberry Pi,Windows 10 IoT,Visual Studio Update 2,Python不會部署:無法連接到遠程調試器
- 21. 將熱電偶與運行Windows的Raspberry Pi配合使用IoT
- 22. 在樹莓PI窗口上構建程序10 IOT
- 23. 從Raspberry Pi流視頻到Android應用程序
- 24. 從Raspberry Pi執行遠程程序
- 25. Raspberry Pi + PocketSphinx
- 26. 拍攝Raspberry Pi上的UWP應用程序的屏幕截圖
- 27. 如何在Raspberry Pi上運行Visual Studio 2017 ASP.NET Core項目?
- 28. plink on raspberry pi
- 29. 我可以在Visual Studio 2015或Mac(Eclipse或XCode)上開發基於Linux的Raspberry Pi應用程序嗎?
- 30. 如何訪問UWP應用程序中運行IoT核心的Raspberry Pi的網絡共享
我認爲你可以在Windows 10核心上運行通用應用程序 – Thomas
但是,如何添加表單以便我可以編輯文本等......? –