Exemplo n.º 1
0
        // *** Constructors ***

        public SettingsPaneManager(IViewFactory viewFactory)
            : base(viewFactory)
        {
            FlyoutEdge flyoutEdge = SettingsPane.Edge == SettingsEdgeLocation.Left ? FlyoutEdge.Left : FlyoutEdge.Right;

            settingsFlyout = new FlyoutPane(flyoutEdge, true);

            settingsFlyout.Closed += OnFlyoutClosed;
        }
Exemplo n.º 2
0
        // *** Constructors ***

        public FlyoutPane(FlyoutEdge flyoutEdge = FlyoutEdge.Right, bool isLightDismissEnabled = false)
        {
            this.flyoutEdge            = flyoutEdge;
            this.isLightDismissEnabled = isLightDismissEnabled;
        }
Exemplo n.º 3
0
        // *** Constructors ***

        public FlyoutPane(FlyoutEdge flyoutEdge = FlyoutEdge.Right, bool isLightDismissEnabled = false)
        {
            this.flyoutEdge = flyoutEdge;
            this.isLightDismissEnabled = isLightDismissEnabled;
        }