标签:
----- 不懂的代码段: - [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