Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Application 
    x:Class="FeedReader4WIRED.App"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
    xmlns:sys="clr-namespace:System;assembly=mscorlib">

    <!--Application Resources-->
    <Application.Resources>
        
        <converter:RssTextTrimmer xmlns:converter="clr-namespace:FeedReader4WIRED" x:Key="RssTextTrimmer" />
        
            <DataTemplate x:Key="MyItemHeaderTemplate">
                <Grid>
                    <ContentPresenter>
                    <TextBlock Text="{Binding}" FontFamily="Courier New" FontSize="60" FontWeight="Bold" Foreground="Red"/>
                    </ContentPresenter>
                </Grid>
            </DataTemplate>
        
    </Application.Resources>

    <Application.ApplicationLifetimeObjects>
        <!--Required object that handles lifetime events for the application-->
        <shell:PhoneApplicationService 
            Launching="Application_Launching" Closing="Application_Closing" 
            Activated="Application_Activated" Deactivated="Application_Deactivated"/>
    </Application.ApplicationLifetimeObjects>

</Application>

Commits for Nextrek/WindowsPhone/FeedReader4WIRED/FeedReader4WIRED/App.xaml

Diff revisions: vs.
Revision Author Commited Message
6 FMMortaroli picture FMMortaroli Sat 20 Apr, 2013 15:30:47 +0000