首页 > 编程语言 > 详细

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

时间:2016-01-30 22:55:13      阅读:462      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!