示例#1
0
文件: lineas.cs 项目: moisesiq/aupaga
 protected override void btnModificar_Click(object sender, EventArgs e)
 {
     if (this.dgvDatos.CurrentRow == null)
         return;
     DetalleLinea l = new DetalleLinea(Util.Entero(this.dgvDatos.CurrentRow.Cells["LineaID"].Value));
     l.ShowDialog();
 }
示例#2
0
文件: lineas.cs 项目: moisesiq/aupaga
        protected override void btnModificar_Click(object sender, EventArgs e)
        {
            if (this.dgvDatos.CurrentRow == null)
            {
                return;
            }
            DetalleLinea l = new DetalleLinea(Util.Entero(this.dgvDatos.CurrentRow.Cells["LineaID"].Value));

            l.ShowDialog();
        }
示例#3
0
文件: lineas.cs 项目: moisesiq/aupaga
 protected override void btnAgregar_Click(object sender, EventArgs e)
 {
     DetalleLinea l = new DetalleLinea();
     l.ShowDialog();
 }
示例#4
0
文件: lineas.cs 项目: moisesiq/aupaga
        protected override void btnAgregar_Click(object sender, EventArgs e)
        {
            DetalleLinea l = new DetalleLinea();

            l.ShowDialog();
        }