file360

Log | Files | Refs

FolderMenu.xaml (1490B)


      1 <UserControl x:Class="File360.FolderMenu"
      2     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
      3     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
      4     xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
      5     xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
      6     mc:Ignorable="d"
      7     FontFamily="{StaticResource PhoneFontFamilyNormal}"
      8     FontSize="{StaticResource PhoneFontSizeNormal}"
      9     Foreground="{StaticResource PhoneForegroundBrush}"
     10     d:DesignHeight="100" d:DesignWidth="420">
     11 
     12     <Grid Height="100" Width="420" VerticalAlignment="Center" HorizontalAlignment="Center">
     13         <TextBlock x:Name="folderName" Text="Folder"  HorizontalAlignment="Right" Height="40" Margin="0,10,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="314" Foreground="{StaticResource PhoneForegroundBrush}" FontSize="28" FontFamily="Segoe WP Light"/>
     14         <TextBlock x:Name="folderAddress" Text="sd://bharat/vcard" HorizontalAlignment="Right" Height="30" Margin="0,50,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="314" FontSize="22" FontFamily="Segoe wp Light" Foreground="{StaticResource PhoneTextBoxBrush}"/>
     15         <Rectangle HorizontalAlignment="Left" Height="100" Stroke="Black" VerticalAlignment="Center" Width="85">
     16             <Rectangle.Fill>
     17                 <ImageBrush Stretch="Uniform" ImageSource="/Resources/Assets/Images/folder.png"/>
     18             </Rectangle.Fill>
     19         </Rectangle>
     20     </Grid>
     21 </UserControl>