Click here to Skip to main content
15,895,656 members
Articles / Mobile Apps / Windows Phone 7

A Windows Phone 7 App from the Ground Up

Rate me:
Please Sign up or sign in to vote.
4.95/5 (36 votes)
21 Dec 2010CPOL17 min read 83.1K   2.3K   85  
Building a WP7 browser app for last.fm
<UserControl x:Class="MyLastFm.View.TrackView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:cmd="clr-namespace:GalaSoft.MvvmLight.Command;assembly=GalaSoft.MvvmLight.WP7"
    xmlns:controls="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls"
    mc:Ignorable="d"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
             Margin="0"
             Padding="0"
    d:DesignHeight="480" d:DesignWidth="480">

    <controls:Pivot x:Name="Pivoter" Title="{Binding Name}" Background="Transparent"
                               TitleTemplate="{StaticResource PivotTitleTemplateSmall}" 
                               HeaderTemplate="{StaticResource PivotHeaderTemplate}">
        <controls:PivotItem Header="track">
            <ScrollViewer>
                <StackPanel>
                    <TextBlock Margin="15,0,0,0" Text="{Binding ArtistName}" TextWrapping="Wrap"/>
                    <TextBlock Margin="15,0,0,0" Text="{Binding AlbumName}" TextWrapping="Wrap"/>
                    <Image Stretch="Uniform" Source="{Binding LargeImage}"/>

                    <ItemsControl DataContext="{Binding Tags}" ItemsSource="{Binding ViewModelItems}"  Margin="0,15,0,0"
                                 ItemsPanel="{StaticResource TagsPanelTemplate}"
                                 ItemTemplate="{StaticResource TagsItemTemplate}"/>
                </StackPanel>
            </ScrollViewer>
        </controls:PivotItem>
        <controls:PivotItem Header="similar" DataContext="{Binding Path=Similar}">
            <ScrollViewer>
                <ItemsControl 
                        ItemsSource="{Binding Path=ViewModelItems}"
                        ItemsPanel="{StaticResource PivotItemPanelTemplate}" 
                        ItemTemplate="{StaticResource PivotItemDataTemplate}"/>
            </ScrollViewer>
        </controls:PivotItem>
        <controls:PivotItem Header="shouts">
            <ListBox DataContext="{Binding Shouts}" 
                            ItemsSource="{Binding Path=ViewModelItems}"
                            ItemContainerStyle="{StaticResource StretchedContainerStyle}"
                            ItemTemplate="{StaticResource ShoutItemTemplate}"
                            SelectedItem="{Binding SelectedItem, Mode=TwoWay}">

            </ListBox>
        </controls:PivotItem>
    </controls:Pivot>
</UserControl>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader Starkey Laboratories
United States United States
The first computer program I ever wrote was in BASIC on a TRS-80 Model I and it looked something like:
10 PRINT "Don is cool"
20 GOTO 10

It only went downhill from there.

Hey look, I've got a blog

Comments and Discussions