道法自然

学无止境

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

无论是asp.net还是winform,我喜欢把所有的东西都高度抽象,继承自同一个东西,

这样,无论从代码量、逻辑上,还是将来的维护,都带来的极大的方便。

首先:定义一个类继承自 PhoneApplicationPage

 public class BasePage : PhoneApplicationPage

添加一个Page,名称为APage

需要两步把新建的Page继承自己的基类。

第一步:

修改APage.xaml.cs文件:

public partial class APage: BasePage

第二步:

修改APage.xaml

在根节点添加xmlns属性:

xmlns:local="clr-namespace:MyPage.BasePage"//

其中:local为自己为一个命名空间起得别名,该名称只在xaml文件中能用。

     MyPage.BasePage为BasePage的namespace

修改xaml的根节点:

<phone:PhoneApplicationPage 

为<local:BasePage

遇到有phone:PhoneApplicationPage 都可以替换成自己写的基类,不然会报错。

修改后的xaml文件

<local:BasePage
x:Class="FuelTracker.APage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:MyPage.BasePage"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Landscape" Orientation="Landscape"
mc:Ignorable="d" d:DesignHeight="480" d:DesignWidth="728"
shell:SystemTray.IsVisible="True">

<!--LayoutRoot 是包含所有页面内容的根网格-->
<Grid x:Name="LayoutRoot" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>

<!--TitlePanel 包含应用程序的名称和页标题-->
<StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
<TextBlock x:Name="ApplicationTitle" Text="我的应用程序" Style="{StaticResource PhoneTextNormalStyle}"/>
<TextBlock x:Name="PageTitle" Text="页面名称" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
</StackPanel>

<!--ContentPanel - 在此处放置其他内容-->
<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"></Grid>
</Grid>


<local:BasePage.ApplicationBar>
<shell:ApplicationBar IsVisible="True" IsMenuEnabled="True">
<shell:ApplicationBarIconButton IconUri="/Images/appbar_button1.png" Text="按钮 1"/>
<shell:ApplicationBarIconButton IconUri="/Images/appbar_button2.png" Text="按钮 2"/>
<shell:ApplicationBar.MenuItems>
<shell:ApplicationBarMenuItem Text="菜单项 1"/>
<shell:ApplicationBarMenuItem Text="菜单项 2"/>
</shell:ApplicationBar.MenuItems>
</shell:ApplicationBar>
</local:BasePage.ApplicationBar>

</local:BasePage>





posted on 2012-03-01 10:46  道法安然  阅读(575)  评论(0编辑  收藏  举报