private void modVelocidad_Click(object sender, EventArgs e) { //modificacion de la velocidad int selectorMod = 1; //modificador de la velocidad 1 int valor = findInListByMMSI(listaObjetivos, System.Convert.ToInt64(dgObjetivos.CurrentRow.Cells[0].Value)); //Modificar todos los parametros Form f = new frmModDatosObjetivos(listaObjetivos, valor, selectorMod); f.ShowDialog(); /* * MessageBox.Show("Modificar velocidad"); * double velocidad = 21; * * int valor = findInListByMMSI(listaObjetivos, System.Convert.ToInt64(dgObjetivos.CurrentRow.Cells[0].Value)); * * if (valor >= 0) * { * // MessageBox.Show("Inidice " + valor); * * listaObjetivos[valor].speed = (float)(velocidad); * MessageBox.Show("Se Cambió la Velocidad"); * * }*/ }
private void modificarTodosLosParametrosToolStripMenuItem_Click(object sender, EventArgs e) { int selectorMod = 0; //selector de modificacion de prametros del objetivo, todos = 0 int valor = findInListByMMSI(listaObjetivos, System.Convert.ToInt64(dgObjetivos.CurrentRow.Cells[0].Value)); //Modificar todos los parametros Form f = new frmModDatosObjetivos(listaObjetivos, valor, selectorMod); f.ShowDialog(); }
private void modRumbo_Click(object sender, EventArgs e) { //codigo modificacion de rumbo // MessageBox.Show("Modificar Rumbo"); int selectorMod = 3; //modificador de la velocidad 2 int valor = findInListByMMSI(listaObjetivos, System.Convert.ToInt64(dgObjetivos.CurrentRow.Cells[0].Value)); //Modificar todos los parametros Form f = new frmModDatosObjetivos(listaObjetivos, valor, selectorMod); f.ShowDialog(); }
private void modVelocidad_Click(object sender, EventArgs e) { //modificacion de la velocidad int selectorMod = 1; //modificador de la velocidad 1 int valor = findInListByMMSI(listaObjetivos, System.Convert.ToInt64(dgObjetivos.CurrentRow.Cells[0].Value)); //Modificar todos los parametros Form f = new frmModDatosObjetivos(listaObjetivos, valor, selectorMod); f.ShowDialog(); /* MessageBox.Show("Modificar velocidad"); double velocidad = 21; int valor = findInListByMMSI(listaObjetivos, System.Convert.ToInt64(dgObjetivos.CurrentRow.Cells[0].Value)); if (valor >= 0) { // MessageBox.Show("Inidice " + valor); listaObjetivos[valor].speed = (float)(velocidad); MessageBox.Show("Se Cambió la Velocidad"); }*/ }