protected internal override void NativeInit()
        {
            if (this.Parent != null && this.Context != null)
            {
                if (this.NativeUIElement == null)
                {
                    var nativeListView = new WrapedListView(this.Context);

                    nativeListView.Adapter = new VirtualizingStackPanelAdapter(this);

                    this.NativeUIElement = nativeListView;
                }
            }
            base.NativeInit();
        }
Ejemplo n.º 2
0
        protected internal override void NativeInit()
        {
            if (this.Parent != null && this.Context != null)
            {
                if (this.NativeUIElement == null)
                {
                    var nativeListView = new WrapedListView(this.Context);

                    nativeListView.Adapter = new VirtualizingStackPanelAdapter(this);

                    this.NativeUIElement = nativeListView;
                }
            }
            base.NativeInit();
        }