private void InitPlotView()
        {
            iosPlot = new PlotView(new CGRect(0, 0, iOSPlotView.Frame.Width, iOSPlotView.Frame.Height));
            iOSPlotView.AddSubview(iosPlot);

            androidPlot = new PlotView(new CGRect(0, 0, AndroidPlotView.Frame.Width, AndroidPlotView.Frame.Height));
            AndroidPlotView.AddSubview(androidPlot);


            uwpPlot = new PlotView(new CGRect(0, 0, UWPPlotView.Frame.Width, UWPPlotView.Frame.Height));
            UWPPlotView.AddSubview(uwpPlot);
        }
        void ReleaseDesignerOutlets()
        {
            if (iOSPlotView != null)
            {
                iOSPlotView.Dispose();
                iOSPlotView = null;
            }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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