I was woundering can i get the Links in the RSS Feeds Navigatable threw Xaml or does it require some CodeBehind also
Did some looking in the SDK and this one seems to be the one i would need to use::
INavigateUIData
I was woundering can i get the Links in the RSS Feeds Navigatable threw Xaml or does it require some CodeBehind also
Did some looking in the SDK and this one seems to be the one i would need to use::
INavigateUIData
Navigate URL in RSS Feed threw Xaml??
Eric Hausig
Raghu_das
goldstei
Yeah its a Standalone application using IFeedsManager manager = new FeedsManagerClass(); which i would assume named targets would be acceptable...This same program is similar to the RSS Feeder in the Vista SideBar...I just havent did the Scrolling Animation using the "Translate Transform" yet...So basically to get the <TextBlock x:Name="TextBlock3" Text="{Binding Mode=OneWay, Path=Link}" to work, i have launch the Brower to make that link Clickable
Thought maybe it could be done in Xaml
here is some of the Xaml Code::
<DataTemplate x:Key="rssTemplate">
<StackPanel x:Name="StackPanel1">
<TextBlock x:Name="TextBlock1" Text="{Binding Mode=OneWay, Path=Title}" FontSize="11" TextWrapping="NoWrap" TextTrimming="CharacterEllipsis"/>
<TextBlock x:Name="TextBlock2" Text="{Binding Mode=OneWay, Path=Description}" FontSize="11" TextWrapping="Wrap" TextTrimming="CharacterEllipsis"/>
<TextBlock x:Name="TextBlock3" Text="{Binding Mode=OneWay, Path=Link}" FontSize="11" TextWrapping="NoWrap" TextTrimming="CharacterEllipsis"/>
<StackPanel x:Name="StackPanel"/>
<TextBlock x:Name="TextBlock4" Text="{Binding Mode=OneWay, Path=PubDate}" FontSize="11" TextWrapping="NoWrap" TextTrimming="CharacterEllipsis"/>
<TextBlock x:Name="TextBlock5" Text="{Binding Mode=OneWay, Path=Category}" FontSize="11" TextWrapping="NoWrap" TextTrimming="CharacterEllipsis"/>
<TextBlock x:Name="TextBlock" Text="{Binding Mode=OneWay, Path=Guid}" FontSize="11" TextWrapping="NoWrap" TextTrimming="CharacterEllipsis"/>
</StackPanel>
</DataTemplate>
larsfp
I have a ListBox with RSS Feeds that i obtain from within IE7,in the Feeds is a "Link" that Navigates to the Full Article http://www.blahblahblah.com/..../...../...
Like to make those Links in the Feeds Navigatable to their Corrasponding Webpage...