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
<UserControl
    x:Class="Facebook.Client.Controls.WebDialog.WebDialogUserControl"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:Facebook.Client.Controls.WebDialog"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    d:DesignHeight="480"
    d:DesignWidth="600">

    <UserControl.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="Styles.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </UserControl.Resources>

    <Grid x:Name="LayoutRoot" Background="{StaticResource ButtonDisabledBackgroundThemeBrush}">
        <!--<phone:WebBrowser x:Name="dialogWebBrowser" IsScriptEnabled="True" Margin="15"/>-->
        <Grid Margin="0,0,0,9" Background="Gray">
            <Grid.RowDefinitions>
                <RowDefinition Height="50*"/>
                <RowDefinition Height="600"/>
                <RowDefinition Height="50*"/>
            </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="100*"/>
                <ColumnDefinition Width="480"/>
                <ColumnDefinition Width="100*"/>
            </Grid.ColumnDefinitions>
            <WebView x:Name="dialogWebBrowser"  Margin="15,22,36,0" Grid.Column="1" Grid.Row="1" />
            <!--  the button is not on the webview because in Windows 8.0, the Webview floats on top of XAML making the button be partially behind-->
            <Button x:ConnectionId='1' x:Name="closeDialogButton" HorizontalAlignment="Right" Height="30" VerticalAlignment="Top" Width="81" Style="{StaticResource CircleWithCrossButtonKey}"                                   Margin="0,0,-18,0" Grid.Column="1" Grid.Row="1" Canvas.ZIndex="1"  />
        </Grid>       
    </Grid>
</UserControl>

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

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