コード例 #1
0
        private void GUISet()
        {
            NormalSample.Stroke    = new SolidColorBrush(ColorDef.Normal);
            DistractASample.Stroke = new SolidColorBrush(ColorDef.DistractA);
            DistractBSample.Stroke = new SolidColorBrush(ColorDef.DistractB);
            DistractCSample.Stroke = new SolidColorBrush(ColorDef.DistractC);
            DistractDSample.Stroke = new SolidColorBrush(ColorDef.DistractD);

            PrintLineChart.changeToPrintMode();
        }
コード例 #2
0
        public void RefreshPrintLine(int scene, string variable, string filePath, int xAsix)
        {
            this.Dispatcher.BeginInvoke((Action) delegate()
            {
                PrintLineChart.clearData();
            });

            plotExperienceLine(scene, UserSelections.NormalMode, PrintLineChart, variable, xAsix);
            plotExperienceLine(scene, UserSelections.DistractAMode, PrintLineChart, variable, xAsix);
            plotExperienceLine(scene, UserSelections.DistractBMode, PrintLineChart, variable, xAsix);
            plotExperienceLine(scene, UserSelections.DistractCMode, PrintLineChart, variable, xAsix);
            plotExperienceLine(scene, UserSelections.DistractDMode, PrintLineChart, variable, xAsix);

            TakeScreenShot(1);
        }