/** * Inicializa el controlador */ private void InicializaControlador() { // Habilita el controlador this.webcam = new WebcamApp(this.appDataPath, ConfigFile); this.onlineStatus.Image = global::solca_webcam.Properties.Resources.offline_icon; this.searchButton.Enabled = false; }
/** * Lee archivo ini */ public void InicilizaOpciones(WebcamApp webcam) //string appDataPath, string configFileName) { this.webcam = webcam; //new WebcamApp(appDataPath, configFileName); this.webcam.InicilizaOpciones(); UserText.Text = this.webcam.User; PassText.Text = this.webcam.Pass; DbText.Text = this.webcam.Db; }
private static bool ValidarConexion(WebcamApp webcam) { return(webcam.ValidarConexion()); }