西西软件园多重安全检测下载网站、值得信赖的软件下载站!
软件
软件
文章
搜索

首页编程开发其它知识 → Windows 8 应用开发开发之RSS 阅读器实例

Windows 8 应用开发开发之RSS 阅读器实例

相关软件相关文章发表评论 来源:西西整理时间:2013/2/15 20:07:40字体大小:A-A+

作者:西西点击:3次评论:0次标签: RSS阅读器

NetPlay Instant Demov10.00.08免费版
  • 类型:屏幕录像大小:28.7M语言:中文 评分:10.0
  • 标签:
立即下载

先上运行截图:

简单说明:右侧主要内容的显示使用了浏览器控件WebView,另外,一些说明放在了代码注释中。

本应用只有一张页面MainPage

前台代码如下:
XAML

 1 <Page
 2     x:Class="Win8RssReader.MainPage"
 3     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 4     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 5     xmlns:local="using:Win8RssReader"
 6     xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
 7     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
 8     mc:Ignorable="d">
 9     <Page.Resources>
10         <Style TargetType="TextBlock">
11             <Setter Property="FontSize" Value="20"/>
12             <Setter Property="IsTextSelectionEnabled" Value="True"/>
13             <Setter Property="VerticalAlignment" Value="Center"/>
14         </Style>
15         <GridLength x:Key="height1">30</GridLength>
16     </Page.Resources>
17 
18     <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
19         <Grid.ColumnDefinitions>
20             <ColumnDefinition Width="300"/>
21             <ColumnDefinition Width="*"/>
22         </Grid.ColumnDefinitions>
23         <Grid>
24             <Grid.RowDefinitions>
25                 <RowDefinition Height="{StaticResource height1}"/>
26                 <RowDefinition Height="50"/>
27                 <RowDefinition Height="{StaticResource height1}"/>
28                 <RowDefinition Height="{StaticResource height1}"/>
29                 <RowDefinition Height="{StaticResource height1}"/>
30                 <RowDefinition Height="*"/>
31             </Grid.RowDefinitions>
32             <TextBox x:Name="txtFeedUri" Width="300" Text="http://www.cnblogs.com/rss"/>
33             <Button x:Name="btnGetFeed" Content="加载RSS" Click="btnGetFeed_Click" Grid.Row="1"/>
34             <StackPanel Orientation="Horizontal" Grid.Row="2">
35                 <TextBlock Text="提示信息:"/>
36                 <TextBlock x:Name="txtMsg" Text="暂无" />
37             </StackPanel>
38             <StackPanel Orientation="Horizontal" Grid.Row="3">
39                 <TextBlock Text="RSS标题:"/>
40                 <TextBlock x:Name="txtFeedTitle" Text="暂无" />
41             </StackPanel>
42             <StackPanel Orientation="Horizontal" Grid.Row="4">
43                 <TextBlock Text="内容条数:"/>
44                 <TextBlock x:Name="txtCount" Text="暂无" />
45             </StackPanel>
46             <ListBox x:Name="listTitle" SelectionChanged="listTitle_SelectionChanged" Grid.Row="5">
47                 <ListBox.ItemTemplate>
48                     <DataTemplate>
49                         <TextBlock Text="{Binding Title.Text}" TextWrapping="Wrap"/>
50                     </DataTemplate>
51                 </ListBox.ItemTemplate>
52             </ListBox>
53         </Grid>
54         <Grid Grid.Column="1">
55             <Grid.RowDefinitions>
56                 <RowDefinition Height="{StaticResource height1}"/>
57                 <RowDefinition Height="*"/>
58             </Grid.RowDefinitions>
59             <TextBlock x:Name="txtItemTitle" HorizontalAlignment="Center"/>
60             <WebView x:Name="webViewContent" Grid.Row="1"/>
61         </Grid>
62     </Grid>
63 </Page>


后台代码如下:

C#

  1 using System;
  2 using System.Collections.Generic;
  3 using System.IO;
  4 using System.Linq;
  5 using System.Threading.Tasks;
  6 using Windows.Foundation;
  7 using Windows.Foundation.Collections;
  8 using Windows.Storage;
  9 using Windows.UI.Xaml;
 10 using Windows.UI.Xaml.Controls;
 11 using Windows.UI.Xaml.Controls.Primitives;
 12 using Windows.UI.Xaml.Data;
 13 using Windows.UI.Xaml.Input;
 14 using Windows.UI.Xaml.Media;
 15 using Windows.UI.Xaml.Navigation;
 16 using Windows.Web.Syndication;
 17 
 18 namespace Win8RssReader
 19 {
 20     public sealed partial class MainPage : Page
 21     {
 22         SyndicationClient syndicationClient;
 23         SyndicationFeed currentFeed;
 24 
 25         /// <summary>
 26         /// WebView在打开target="_blank"的超链接时会打开电脑上的浏览器,为了避免这种情况,这段js可通过更改DOM,使所有超链接的target="_self"。
 27         /// </summary>
 28         string MyJs { get; set; }
 29 
 30         public MainPage()
 31         {
 32             this.InitializeComponent();
 33         }
 34 
 35         async protected override void OnNavigatedTo(NavigationEventArgs e)
 36         {
 37             MyJs = await GetMyJs();
 38         }
 39 
 40         private async Task<string> GetMyJs()
 41         {
 42             StorageFile jsFile = await StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///js.txt"));
 43             string jsText = await FileIO.ReadTextAsync(jsFile);
 44             return jsText;
 45         }
 46 
 47         private async void btnGetFeed_Click(object sender, RoutedEventArgs e)
 48         {
 49             string feedUriString = txtFeedUri.Text;
 50             await GetFeedAsync(feedUriString);
 51             DisplayFeed();
 52         }
 53 
 54         private async Task GetFeedAsync(string feedUriString)
 55         {
 56             Uri uri;
 57             if (!Uri.TryCreate(feedUriString.Trim(), UriKind.Absolute, out uri))
 58             {
 59                 txtMsg.Text = "url错误";
 60                 return;
 61             }
 62             if (syndicationClient == null)
 63             {
 64                 syndicationClient = new SyndicationClient();
 65             }
 66             syndicationClient.BypassCacheOnRetrieve = true;
 67             syndicationClient.SetRequestHeader("User-Agent", "Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)");
 68             txtMsg.Text = "开始下载...";
 69             try
 70             {
 71                 currentFeed = await syndicationClient.RetrieveFeedAsync(uri);
 72                 txtMsg.Text = "下载完成";
 73             }
 74             catch (Exception ex)
 75             {
 76                 txtMsg.Text = ex.Message;
 77             }
 78         }
 79 
 80         private void DisplayFeed()
 81         {
 82             if (currentFeed != null)
 83             {
 84                 ISyndicationText title = currentFeed.Title;
 85                 txtFeedTitle.Text = title != null ? title.Text : "(没有标题)";
 86                 txtCount.Text = currentFeed.Items.Count.ToString();
 87                 listTitle.ItemsSource = currentFeed.Items;
 88                 listTitle.SelectedIndex = 0;//选中第0条,触发SelectionChanged事件。
 89             }
 90         }
 91 
 92         private void listTitle_SelectionChanged(object sender, SelectionChangedEventArgs e)
 93         {
 94             var item = (SyndicationItem)listTitle.SelectedValue;
 95             DisplayCurrentItem(item);
 96         }
 97 
 98         private void DisplayCurrentItem(SyndicationItem item)
 99         {
100             if (item != null)
101             {
102                 txtItemTitle.Text = item.Title != null ? item.Title.Text : "(没有标题)";
103                 string content = "(没有内容)";
104                 if (item.Content != null)
105                 {
106                     content = item.Content.Text;
107                 }
108                 else if (item.Summary != null)
109                 {
110                     content = item.Summary.Text;
111                 }
112                 content += MyJs;
113                 webViewContent.NavigateToString(content);
114             }
115         }
116     }
117 }


引用文件js.txt中的内容如下:

<script type="text/javascript">
//WebView在打开target="_blank"的超链接时会打开电脑上的浏览器,为了避免这种情况,这段js可通过更改DOM,使所有超链接的target="_self"。
    var links = document.getElementsByTagName("a");
    for (var i = 0; i < links.length; i++) {
        links[i].target = "_self";
    }
</script>


题外话:

感觉现在做Windows Store App开发的很少哦,真心希望能和感兴趣的朋友们交流交流。

    屏幕录像
    (71)屏幕录像
    西西软件园提供了最新最全的屏幕录像工具,其中体验最好的就是屏幕录像专家了,可以轻松地将屏幕上的软件操作过程等录制成FLASH动画、AVI动画或者自播放的EXE动画.软件采用先录制,再生成的方式或者直接录制的方式录制屏幕录像,使用户对制作过程更加容易控制。本软件使用简单,功能强大,是制作各种屏幕录像的首选软件。...更多>>
    • 屏幕录像(HyperCam)v3.0.912.18 中

      08-03 / 8.1M

      推荐理由:HyperCam是一套专门用来捕捉您的操作画面的程序,包括鼠标的移动轨迹与音效,然后将它保存为标准的AVI视频文
    • 腾讯屏幕录像专家v1.0 绿色版

      07-29 / 791KB

      推荐理由:腾讯屏幕录像专家是一款由网友自己制作的屏幕录像软件。软件完全绿色免费,无毒无广告,界面简洁清晰,功能
    • frapsv3.5.99 汉化版

      10-16 / 2.5M

      推荐理由:Fraps是一个可以使用DirectX或OpenGL图形技术在游戏中录像的应用程序,可以执行许多任务。fraps录制的视频是
    • 小奇狗屏幕录像机v1.0 绿色版

      06-04 / 2.2M

      推荐理由:小奇狗屏幕录像机是一个可以把屏幕录制成视频的软件。 可以制作视频动画,视频演示,视频教程等用途广泛。
    • 超级屏幕录像(Zeallsoft Super Scr

      04-28 / 2.9M

      推荐理由:Zeallsoft Super Screen Recorder 是一款小巧的屏幕录像工具,可以很方便的录像您的桌面,更多软件技巧大家
    • 屏幕录像机(321Soft Screen Video

      01-15 / 293KB

      推荐理由:最近一朋友想为公司员工制作几个软件使用教程,想要截图并且需要录像,可是试了一圈网上下载的一些屏幕录制

    相关评论

    阅读本文后您有什么感想? 已有人给出评价!

    • 8 喜欢喜欢
    • 3 顶
    • 1 难过难过
    • 5 囧
    • 3 围观围观
    • 2 无聊无聊

    热门评论

    最新评论

    发表评论 查看所有评论(0)

    昵称:
    表情: 高兴 可 汗 我不要 害羞 好 下下下 送花 屎 亲亲
    字数: 0/500 (您的评论需要经过审核才能显示)