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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<ResourceDictionary
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Facebook.Client.Controls">

    <local:BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
    <local:PickerSelectionModeConverter x:Key="PickerSelectionModeConverter" />

    <DataTemplate x:Name="ZoomedInItemTemplate">
        <StackPanel Orientation="Horizontal" Margin="0,4">
            <Image
                Width="{Binding Parent.PictureSize.Width}"
                Height="{Binding Parent.PictureSize.Height}"
                Stretch="UniformToFill" 
                Margin="0, 0, 10, 0"
                Visibility="{Binding Parent.DisplayProfilePictures, Converter={StaticResource BooleanToVisibilityConverter}}" 
                Source="{Binding Item.ProfilePictureUrl}" />
            <TextBlock
                HorizontalAlignment="Left" 
                VerticalAlignment="Top" 
                Margin="5"
                TextWrapping="Wrap" 
                Text="{Binding Item.Name}"
                Style="{StaticResource ItemTextStyle}" />
        </StackPanel>
    </DataTemplate>

    <Style TargetType="local:PlacePicker">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="local:PlacePicker">
                    <SemanticZoom x:Name="PART_SemanticZoom"
                        Background="{TemplateBinding Background}">
                        <SemanticZoom.ZoomedInView>
                            <ListView 
                                ItemsSource="{Binding}"
                                ItemTemplate="{StaticResource ZoomedInItemTemplate}"
                                SelectionMode="{Binding SelectionMode, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource PickerSelectionModeConverter}}"
                                BorderBrush="{TemplateBinding BorderBrush}"
                                BorderThickness="{TemplateBinding BorderThickness}"
                                ScrollViewer.IsVerticalScrollChainingEnabled="False">
                            </ListView>
                        </SemanticZoom.ZoomedInView>
                        <SemanticZoom.ZoomedOutView>
                            <ListView>
                            </ListView>
                        </SemanticZoom.ZoomedOutView>
                    </SemanticZoom>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ResourceDictionary>

Commits for Nextrek/Android/SmartCharging/SmartCharging_WP/packages/Facebook.Client.1.0.4/lib/win8/Facebook.Client/Controls/PlacePicker/PlacePicker.xaml

Diff revisions: vs.
Revision Author Commited Message
799 JMBauan picture JMBauan Thu 08 Oct, 2015 13:36:32 +0000