FTPPage.xaml (2941B)
1 <Page 2 x:Class="File360.FTPPage" 3 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 5 xmlns:local="using:File360" 6 xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 7 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 8 mc:Ignorable="d"> 9 <Page.Transitions> 10 <TransitionCollection> 11 <ContentThemeTransition HorizontalOffset="0"/> 12 </TransitionCollection> 13 </Page.Transitions> 14 15 <Grid> 16 <Grid.RowDefinitions> 17 <RowDefinition Height="Auto"/> 18 <RowDefinition Height="*"/> 19 </Grid.RowDefinitions> 20 <Button Style="{StaticResource DefaultButton}" HorizontalAlignment="Left" VerticalAlignment="Stretch" HorizontalContentAlignment="Left" Opacity="0.95"> 21 <Button.Background> 22 <SolidColorBrush Color="{ThemeResource PhoneBackgroundColor}"/> 23 </Button.Background> 24 <StackPanel Orientation="Horizontal"> 25 <TextBlock VerticalAlignment="Center" HorizontalAlignment="Left" TextAlignment="Left" FontSize="24" Text="g" FontFamily="Assets/Font/settingsfont.ttf#settingsfont" FontWeight="Thin" FontStretch="UltraCondensed"> 26 <TextBlock.Foreground> 27 <SolidColorBrush Color="{ThemeResource PhoneForegroundColor}"/> 28 </TextBlock.Foreground> 29 </TextBlock> 30 <TextBlock HorizontalAlignment="Left" 31 TextWrapping="Wrap" 32 Text="ftp" 33 VerticalAlignment="Center" 34 FontFamily="Assets/Font/Custom/HelveticaNeue-Thin.otf#Helvetica Neue" FontWeight="Normal" Margin="5,0,0,0" TextLineBounds="TrimToCapHeight" FontSize="32"> 35 <TextBlock.Foreground> 36 <SolidColorBrush Color="{ThemeResource PhoneForegroundColor}"/> 37 </TextBlock.Foreground> 38 </TextBlock> 39 </StackPanel> 40 </Button> 41 <ToggleSwitch HorizontalAlignment="Right" Margin="10,0,0,0"/> 42 <ScrollViewer Grid.Row="1"> 43 <ScrollViewer.Background> 44 <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0" Opacity="0.3"> 45 <GradientStop Color="Black" Offset="0"/> 46 <GradientStop Offset="0.02"/> 47 </LinearGradientBrush> 48 </ScrollViewer.Background> 49 <StackPanel Margin="10,0"> 50 <TextBlock Text="users connected" Style="{StaticResource GroupHeaderTextBlockStyle}"/> 51 <GridView Height="400"/> 52 <TextBlock Text="address" Style="{StaticResource GroupHeaderTextBlockStyle}"/> 53 <TextBlock Text="192.168.1.100" Style="{StaticResource ListViewItemTextBlockStyle}"/> 54 </StackPanel> 55 </ScrollViewer> 56 </Grid> 57 </Page>