码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2016-01-30 22:55:59      阅读:450      评论:0      收藏:0      [点我收藏+]

标签:

以前在学习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 .../>中还有其它的内容,现在还有很多不理解的,仍要不断地学习,现在先记录这么多;

 

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

标签:

原文地址:http://www.cnblogs.com/zmlohw/p/5172085.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!