Exemplo n.º 1
0
        public override bool OnOptionsItemSelected(IMenuItem item)
        {
            switch (item.ItemId)
            {
            case Resource.Id.exportToExcel:
                ExportToExcel();
                return(true);

            case Resource.Id.resetBT:
                StartActivity(new Intent(this, typeof(MainActivity)));
                if (TableData != null)
                {
                    TableData.Dispose();
                }
                if (Graph != null)
                {
                    Graph.Dispose();
                }
                ODA = null;
                RA  = null;
                Finish();
                return(true);

            default: return(false);
            }
        }
Exemplo n.º 2
0
        void ReleaseDesignerOutlets()
        {
            if (RootView != null)
            {
                RootView.Dispose();
                RootView = null;
            }

            if (SfChart != null)
            {
                SfChart.Dispose();
                SfChart = null;
            }

            if (TypeLabel != null)
            {
                TypeLabel.Dispose();
                TypeLabel = null;
            }
        }
Exemplo n.º 3
0
 protected override void Dispose(bool disposing)
 {
     SfChart.Dispose();
     base.Dispose(disposing);
 }