我们先看一下 helloworld项目工程里面主要包含的文件。如图一所示:
下面我们详细的解析一下每个文件,代码的作用。
1、MainPage.xaml文件
---------------------------------代码如下--------------------------------------------------------------------
<phone:PhoneApplicationPage
x:Class="Helloworld.MainPage"
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"
mc:Ignorable="d"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
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 Text="我的应用程序" Style="{StaticResource PhoneTextNormalStyle}" Margin="12,0"/>
<TextBlock Text="页面名称" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
</StackPanel>
<!--ContentPanel - 在此处放置其他内容-->
<Button Content="Button" HorizontalAlignment="Left" Margin="143,75,0,0" Grid.Row="1" VerticalAlignment="Top" Click="Button_Click_1"/>
<!--<Image Source="/Assets/AlignmentGrid.png" VerticalAlignment="Top" Height="800" Width="480" Margin="0,-32,0,0" Grid.Row="0" Grid.RowSpan="2" IsHitTestVisible="False" />-->
</Grid>
</phone:PhoneApplicationPage>
----------------------------------------------------------------------------------------------------------------------
在mainpage.xaml文件里面有若干命名空间,详解如下:
1、xmlns代表是默认的空间,页面上的UI控件没有前缀则代表它属于默认的命名空间。如Grid标签。
2、xmlns:x代表专属的名字空间,如页面上有一个属性叫Name,那么x:Name就代表这个xaml的名字空间。
3、xmlns:phone 包含在Miscroft.phone的Dll中。
4、xmlns.shell包含在miscroft.shell的引用dll中,可以帮助管理生命周期。
5、xmlns.d呈现一些设计时的数据,而应用真正运行起来会忽略这些运行时数据。
6、xmlns.mc布局兼容性,主要配合xmlns.d使用,它包含Ignorable属性,可以在运行时忽略这些设计时的数据。
2、MainPage.xaml.cs文件
MainPage.xaml.cs文件是MainPage.xaml文件对应的后台代码的处理。
-----------------------------------代码如下-------------------------------------------------
namespace Helloworld
{
public partial class MainPage : PhoneApplicationPage
{
// 构造函数
public MainPage()
{ //初始化页面组件
InitializeComponent();
// 用于本地化 ApplicationBar 的示例代码
//BuildLocalizedApplicationBar();
}
/// <summary>
/// button单击事件
/// </summary>
/// <param name="sender">触发事件对象</param>
/// <param name="e">触发事件</param>
private void Button_Click_1(object sender, RoutedEventArgs e)
{
MessageBox.Show("Hello World!","警告!",MessageBoxButton.OK);
}
}
}
-----------------------------------------------------------------------------------------
3、App.xaml文件
------------------------------------代码------------------------------------------------
<Application
x:Class="Helloworld.App"
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">
<!--应用程序资源-->
<Application.Resources>
<local:LocalizedStrings xmlns:local="clr-namespace:Helloworld" x:Key="LocalizedStrings"/>
</Application.Resources>
<Application.ApplicationLifetimeObjects>
<!--处理应用程序的生存期事件所需的对象-->
<shell:PhoneApplicationService
Launching="Application_Launching" Closing="Application_Closing"
Activated="Application_Activated" Deactivated="Application_Deactivated"/>
</Application.ApplicationLifetimeObjects>
</Application>
--------------------------------------------------------------------------------------
注意:
1、节点Application.Resources的作用是用来加载整个应用程序的资源,如果需要在应用程序中加载同样的样式,则需要在这个节点下添加公共样式。其中Application.ApplicationLifetimeObjects中定义了程序启动过程、关闭过程、重新激活、失去激活,这些事件都在App.xaml.cs文件中。
4、App.xaml.cs文件(见续集)