Beispiel #1
0
        public void SetList(List <ServicePoint> points)
        {
            if (points == null || points.Count == 0)
            {
                TablePoints.BackgroundView.Alpha = 1;
            }
            else
            {
                TablePoints.BackgroundView.Alpha = 0;
            }
            SetNavBar("Map");
            TablePoints.Alpha = 1;
            MapPoints.Alpha   = 0;
            var source = new StoresTableSource(points, this);

            TablePoints.Source = source;
            TablePoints.ReloadData();
        }