我正在使用FlipView控件翻閱各種頁面,即* .XAML頁面。我正在使用Page
類的ObservableCollection
。現在這些頁面中的一個頁面包含AppBar,但該AppBar也可以在任何其他收集的XAML頁面中打開。如何防止在所有頁面中打開AppBar?爲什麼appbar在翻轉瀏覽的不同頁面之間打開?
簡單說明: - 我有四個XAML頁面。
(1)MainPage.xaml中(只包含FlipView和Page類的ObservableCollection)
(2)PageWithAppBar.xaml(AppBar是在當前頁)
(3)PageWithoutAppBar.xaml
(4)PageWithoutAppBar2.xaml
現在通過flipview,當我在PageWithoutAppBar.xaml翻轉或PageWithoutAppBar2.xaml然後按右鍵然後應用程序條的PageWithAppBar.xaml變得可見,所以我不希望那件事,我該如何防止這種情況?
我到現在爲止試過的東西?
我創建了一個函數來檢查AppBar應該顯示在哪個頁面上。 我試圖設置
Visibility = Collapsed
,
IsOpen = false
,
this.BottomAppBar = null
,
IsEnable = false
隨後也出現
實際的AppBar在哪裏定義?在MainPage.xaml中? – Krishna
Bottom AppBar在PageWithAppBar.xaml中定義 – Xyroid
您是否在AppBar上對IsSticky = false進行了定義? – Krishna