Exemple #1
0
 //------------------------------------------------------------------------------------------------
 void ListaVariablesEstablecerConsecuente(SistemaExpertoLib.Variable variable, EventArgs e)
 {
     if (!c_Editor1.EstablecerConsecuente(variable))
     {
         MessageBox.Show("No se puede establer " + variable.nombre_variable + " como consecuente debido a que está establecida como antecedente");
     }
 }
Exemple #2
0
        //--------------------------------------------------------------------------------------------
        void ListaVariablesVariableDoubleClick(SistemaExpertoLib.Variable variable, MouseEventArgs e)
        {
            if (c_Editor1.NombreContexto.Equals(""))
            {
                MessageBox.Show("Seleccione un contexto", "Contexto");
                return;
            }

            c_Editor1.AgregarVariable(variable);
        }
Exemple #3
0
 //------------------------------------------------------------------------------------------------
 void ListaVariablesVariableDoubleClick(SistemaExpertoLib.Variable variable, MouseEventArgs e)
 {
     c_Editor1.AgregarVariable(variable);
 }
Exemple #4
0
 //--------------------------------------------------------------------------------------------
 void ListaVariablesEditarVariable(SistemaExpertoLib.Variable variable, EventArgs e)
 {
 }