我想隱藏應用程序欄在Windows Phone應用程序中是這樣的:appbar1.IsVisible=false;
但當我調試代碼時,在同一行發生錯誤NullReferenceException
。爲什麼?需要幫助隱藏應用程序欄在Windows手機
5
A
回答
4
嘗試ApplicationBar.IsVisible = false;
2
您可以嘗試
ApplicationBar = ((ApplicationBar)this.Resources["appbar1"])
ApplicationBar.IsVisible = false;
這將解決您的問題
+0
我已經試過你的代碼,但同樣的錯誤再次發生 –
+0
你能檢查是否this.Resources [「appbar1」(在快速監視)也將返回null ?如果是,那麼你使用的'this'不是引用到你有應用程序欄的頁面 –
0
你好你可以試試這個代碼。
ApplicationBar _Appbar= ((ApplicationBar)this.Resources["appbar1"]); _Appbar.IsVisible = false;
0
ApplicationBarIconButton btn = (ApplicationBarIconButton)ApplicationBar.Buttons[0];
btnResend.IsEnabled = false;
相關問題
- 1. Windows Phone 7隱藏應用程序欄
- 2. Windows手機應用程序欄
- 3. Windows手機應用程序
- 4. iPhone應用程序 - 隱藏狀態欄
- 5. 從任務欄隱藏應用程序
- 6. 如何隱藏Windows Phone 8.1(WinJS)應用程序中的應用程序欄?
- 7. 在Windows手機應用程序
- 8. 製圖在Windows手機應用程序
- 9. CEF在windows手機應用程序
- 10. httpcontext在Windows手機應用程序
- 11. System.Windows.Media在Windows手機應用程序8.1
- 12. 在Windows Phone 8應用程序中隱藏RecognizerUI應用程序
- 13. Windows Phone應用程序欄隱藏頁面內容
- 14. Windows手機禁用應用程序欄按鈕
- 15. 桌面應用程序(Windows應用程序)連接Windows手機
- 16. 隱藏手機safari地址欄
- 17. Windows Mobile - 隱藏應用程序
- 18. windows 8手機應用程序
- 19. 內存的Windows手機應用程序
- 20. Windows手機應用程序鏈接
- 21. 自定義標籤欄應用程序ipad隱藏標籤欄
- 22. 隱藏標籤欄中的標籤欄應用程序
- 23. 如何在Windows任務欄中隱藏我的應用程序的表單?
- 24. 如何在Windows 7中隱藏任務欄中的應用程序?
- 25. Android隱藏應用程序
- 26. 隱藏應用程序
- 27. 在網絡應用程序中隱藏iOS鍵盤標籤欄
- 28. 隱藏狀態欄在鎖屏應用程序
- 29. 重新開張後,應用程序隱藏在three20導航欄
- 30. iOS7如何在應用程序中完全隱藏狀態欄?
感謝很多的朋友。它的工作:) –