WP8.1开发中对于XAML中一些语言的学习(1);

以前在学习WP开发的时候,看到视频中说到程序在创建之初,MainPaige.xaml页面上有一些代码:

<Page
    x:Class="草案.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:草案"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">

      刚开始学习,没有去在意这方面内容,也没有理解其中的内容,后来在重新看视频时,对部分内容有了理解,现在记录下自己的学习:

1.下面写一些简单示例(C#代码):

  class Person
  {

    ...


  }


  class Student:Person
  {

  ...

  }


    Student stu=new Student();

2.将上述代码转换成XAML代码是:

<Person 

   x:Class="命名空间.Student"

   x:Key="stu" 

.../>

  当然,还有<Page .../>中还有其它的内容,现在还有很多不理解的,仍要不断地学习,现在先记录这么多;

 

posted on 2016-01-30 21:16  legendofhungrywolf  阅读(127)  评论(0编辑  收藏  举报