码迷,mamicode.com
首页 > 移动开发 > 详细

在VS2013上使用git - Fork Cnblog App

时间:2015-02-12 12:10:25      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:

  • 第一次使用 github - 代码管理器
  1. 创建空项目 - 并将这个项目与 github 相关联。 - 可以自己创建 + 可以Fork + 可以协同办公。
  2. 现在类似的云代码管理平台,微软也有一个 - Windows Azure - 还提供免费使用机会。

 ----- 不懂的代码段: - [git上的Cnblog代码段]

1.local:PostControl的写法: 

 1         <ListView x:Name="lv_Posts" Grid.Row="1" Background="{ThemeResource CNBlogsBackColor}">
 2             <ListView.Header>
 3                 <local:ListViewHeaderControl Name="基类页面"/>
 4             </ListView.Header>
 5             <ListView.ItemTemplate>
 6                 <DataTemplate>
 7                     <local:PostControl Tapped="PostControl_Tapped"/>
 8                 </DataTemplate>
 9             </ListView.ItemTemplate>
10         </ListView>

2.UI主题的设置,切换?

 1 namespace Windows.UI.Xaml
 2 {
 3     // 摘要: 
 4     //     指定应当用于应用程序 UI 的各个 UIElement 部件的 UI 主题。
 5     [SupportedOn(100859904, Platform.Windows)]
 6     [SupportedOn(100859904, Platform.WindowsPhone)]
 7     [Version(100859904)]
 8     [WebHostHidden]
 9     public enum ElementTheme
10     {
11         // 摘要: 
12         //     使用元素的 Application.RequestedTheme 值。这是默认值。
13         [SupportedOn(100859904, Platform.Windows)]
14         [SupportedOn(100859904, Platform.WindowsPhone)]
15         Default = 0,
16         //
17         // 摘要: 
18         //     使用 Light 默认主题。
19         [SupportedOn(100859904, Platform.Windows)]
20         [SupportedOn(100859904, Platform.WindowsPhone)]
21         Light = 1,
22         //
23         // 摘要: 
24         //     使用 Dark 默认主题。
25         [SupportedOn(100859904, Platform.Windows)]
26         [SupportedOn(100859904, Platform.WindowsPhone)]
27         Dark = 2,
28     }
29 }

 

 ----- 代码概要:

1.Page.BottomAppBar -> CommandBar -> AppBarButton -- [下端的按钮]

2.Page的UI主题 - page.RequestedTheme = 这个是不是默认的?

3.我的代码全被 git 还原了。。。

4.

在VS2013上使用git - Fork Cnblog App

标签:

原文地址:http://www.cnblogs.com/alben/p/4287599.html

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