2015-11-16 41 views
0

繼承,我很困惑,我怎麼能實現的場景:從BasePage的

我有類PageBase在那裏我的OnNavigatedTo,OnNavigatedFrom,BackPressed行爲,但沒有視圖(或者直接彈出式菜單如果可能的話)。然後,我怎麼從該類繼承我的MainPage - 我得到錯誤:

partial decralatcion of page must not specify (...)

對我來說重要的是,所有的頁面看起來differenlty但是有些行爲是simmilar。

回答

1

除了繼承基類外,還需要更新XAML。

<local:PageBase xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
       ....... 
相關問題