Once installed the app can be launched from the Windows 8 Home Screen like other Metro applications. The application comes with a default RSS feed which can be changed from the Application Bar. Start screen lists All items in the feed and clicking on any item takes you to a detail screen, on this screen from the App bar users can choose to Share this post via Charms and launch browser to read more.
The main view also links to Categories view which groups items in one or more categories.
I also did a quick screencast for current downloadable version and published it on Youtube, you can watch it below.
Other features
Clicking on category name from the main view takes you to category details view containing a list of items.
Using Search Charm you can lookup posts matching your search keyword.
Current Status
You can download the current stable release from the project’s homepage on Codeplex.com, it lacks some new features that we added recently, I will publish a newer version soon.
And I have also teamed up with my good friend Hammad Rajjoub and together we are working on many new features, some of them are listed below but we’d love to hear from you, so please give us your valuable comments and suggestions.
As said there are a number of exciting features planned for this app.
Enable Multiple RSS/ATOM feeds
To be able to read news from multiple sources
Show Read/Unread items
To be able to quickly jump to the Unread items
Save chosen Categories,feeds and others in Roaming settings
Where a user logs into Windows 8 from another PC or a tablet using his Live ID, the app will remember these settings across all devices.
Offline capabilities
For a disconnected or occasionally connected client, users can load newsfeed and be able to read them offline
Background Transfer
Load new items when the application is not running
Live Tile notifications
We’ll add notifications for new items in Live Tiles on Windows 8 Home screen so users don’t have to launch and click Refresh
These are some of the features we are working on, if you have installed Windows 8 Consumer preview we would like you to use it and let us know what you think.
If you are building a Metro app for Windows 8 with XAML/C# and need to launch your link in a browser, there is HyperlinkButton control but you need to wire up the Click event and launch it from the codebehind file.
So I ended up doing something like this
1:<HyperlinkButton
2:x:Name="Readmore"
3:Click="Readmore_OnClick"
4:Tag="{Binding Link}"
5:Content="Read more.."/>
I am using the Tag property to bind my link and get it in the code like this.