Exemplo n.º 1
0
 public App()
 {
     InitializeComponent();
     _textBoxListener = new TextBoxTraceListener(txtConsole);
     Trace.Listeners.Add(_textBoxListener);
     C = new Controller();
 }
Exemplo n.º 2
0
        public View()
        {
            InitializeComponent();

            _textBoxListener = new TextBoxTraceListener(txtConsole);
            Trace.Listeners.Add(_textBoxListener);

            dbOrdiniPath     = ConfigurationManager.AppSettings["dbOrdiniFile"];
            pythonPath       = ConfigurationManager.AppSettings["pythonPath"];
            pythonScriptPath = ConfigurationManager.AppSettings["pyScripts"];

            C = new Controller(pythonPath, pythonScriptPath);
        }
Exemplo n.º 3
0
        public App()
        {
            InitializeComponent();
            _textBoxListener = new TextBoxTraceListener(txtConsole);
            Trace.Listeners.Add(_textBoxListener);

            //btnSARIMA.Enabled = false;
            //btnLocalSearch.Enabled = false;

            btnSARIMA.Enabled = true;
            //Forecast.Enabled = true;

            dbOrdiniPath      = ConfigurationManager.AppSettings["dbordiniFile"];
            pythonPath        = ConfigurationManager.AppSettings["pythonPath"];
            pythonScriptsPath = ConfigurationManager.AppSettings["pyScripts"];

            C = new Controller(pythonPath, pythonScriptsPath);
        }