Exemplo n.º 1
0
        public DockLayoutRenderer(
            global::Android.Content.Context context,
            XForms.Layouts.DockLayout layout)
            : base(context, layout)
        {
            this._dockLayout = new NativeDockLayout(context);

            this.SetNativeElement(this._dockLayout);
        }
Exemplo n.º 2
0
        public DockLayoutRenderer(
            XForms.Layouts.DockLayout layout)
            : base(layout)
        {
            this._panel = new NativeDockPanel();
            this._panel.HorizontalAlignment = global::Windows.UI.Xaml.HorizontalAlignment.Stretch;
            this._panel.VerticalAlignment   = global::Windows.UI.Xaml.VerticalAlignment.Stretch;

            this.SetNativeElement(this._panel);
        }
Exemplo n.º 3
0
 public DockLayoutViewCollection(
     DockLayout layout)
     : base(layout)
 {
 }