當前位置: 首頁>>代碼示例>>C#>>正文


C# FrmSelectedEntity.GetSelectedEntity方法代碼示例

本文整理匯總了C#中Soft.Win.FrmSelectedEntity.GetSelectedEntity方法的典型用法代碼示例。如果您正苦於以下問題:C# FrmSelectedEntity.GetSelectedEntity方法的具體用法?C# FrmSelectedEntity.GetSelectedEntity怎麽用?C# FrmSelectedEntity.GetSelectedEntity使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Soft.Win.FrmSelectedEntity的用法示例。


在下文中一共展示了FrmSelectedEntity.GetSelectedEntity方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: ssPerfil_Search

 private void ssPerfil_Search(object sender, EventArgs e)
 {
     if (UIActualizando) { return; }
     FrmSelectedEntity FrmSeleccionar = new FrmSelectedEntity();
     Usuario.Perfil = (Perfil)FrmSeleccionar.GetSelectedEntity(typeof(Perfil), "Perfil");
     Mostrar();
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:7,代碼來源:FrmUsuario.cs

示例2: ssEmpresa_Search

 private void ssEmpresa_Search(object sender, EventArgs e)
 {
     if (UIActualizando) { return; }
     FrmSelectedEntity FrmSeleccionar = new FrmSelectedEntity();
     Usuario.Empresa = (Empresa)FrmSeleccionar.GetSelectedEntity(typeof(Empresa), "Empresa");
     Mostrar();
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:7,代碼來源:FrmUsuario.cs

示例3: busProvincia_Search

 private void busProvincia_Search(object sender, EventArgs e)
 {
     FrmSelectedEntity FrmSeleccionar = new FrmSelectedEntity();
     String Filtro = String.Format (" IDDepartamento = '{0}' AND Nombre LIKE '{1}%'",Item.Departamento.ID,busProvincia.Text);
     Item.Provincia = (Provincia)FrmSeleccionar.GetSelectedEntity(typeof(Provincia), "Provincia", Filtro);
     if (Item.Provincia != null)
     {
         busProvincia.Text = (Item.Provincia != null) ? Item.Provincia.Nombre : "";
     }
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:10,代碼來源:FrmSeleccionarDireccion.cs

示例4: busAlmacen_Search

 private void busAlmacen_Search(object sender, EventArgs e)
 {
     FrmSelectedEntity FrmSeleccionarPanel = new FrmSelectedEntity();
     this.TipoDocumentoInventario.Almacen = (Almacen)FrmSeleccionarPanel.GetSelectedEntity(typeof(Almacen), "Almacen");
     if (this.TipoDocumentoInventario.Almacen != null)
     {
         busAlmacen.Text = this.TipoDocumentoInventario.Almacen.Nombre;
         busAlmacen.Enabled = true;
     }
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:10,代碼來源:FrmTipoDocumentoInventario.cs

示例5: busDistrito_Search

 private void busDistrito_Search(object sender, EventArgs e)
 {
     FrmSelectedEntity FrmSeleccionar = new FrmSelectedEntity();
     String Filtro = String.Format(" IDProvincia = '{0}' AND Nombre LIKE '{1}%'", Item.Provincia.ID,busDistrito.Text);
     Item.Distrito = (Distrito)FrmSeleccionar.GetSelectedEntity(typeof(Distrito), "Distrito", Filtro);
     if (Item.Distrito != null)
     {
         busDistrito.Text = (Item.Distrito != null) ? Item.Distrito.Nombre : "";
     }
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:10,代碼來源:FrmSeleccionarDireccion.cs

示例6: busDepartamento_Search

 private void busDepartamento_Search(object sender, EventArgs e)
 {
     FrmSelectedEntity FrmSeleccionar = new FrmSelectedEntity();
     String Filtro = String.Format(" Nombre LIKE '{0}%'",busDepartamento.Text);
     Item.Departamento  = (Departamento)FrmSeleccionar.GetSelectedEntity(typeof(Departamento), "Departamento", Filtro);
     if (Item.Departamento != null)
     {
         busDepartamento.Text = (Item.Departamento != null) ? Item.Departamento.Nombre : "";
     }
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:10,代碼來源:FrmSeleccionarDireccion.cs

示例7: ssMoneda_Search

 private void ssMoneda_Search(object sender, EventArgs e)
 {
     try
     {
         FrmSelectedEntity FrmSeleccionar = new FrmSelectedEntity();
         Caja.Moneda = (Moneda)FrmSeleccionar.GetSelectedEntity(typeof(Moneda), "Moneda");
         Mostrar();
     }
     catch (Exception ex)
     {
         SoftException.Control(ex);
     }
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:13,代碼來源:FrmCaja.cs

示例8: busDepartamento_Search

 private void busDepartamento_Search(object sender, EventArgs e)
 {
     try
     {
         FrmSelectedEntity FrmSeleccionar = new FrmSelectedEntity();
         String Filtro = String.Format(" Nombre LIKE '{0}%'", busDepartamento.Text);
         itemSalidaCaja.DepartamentoOrigen = (Departamento)FrmSeleccionar.GetSelectedEntity(typeof(Departamento), "Departamento", Filtro);
         Mostrar(this.itemSalidaCaja);
     }
     catch (Exception ex)
     {
         SoftException.Control(ex);
     }
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:14,代碼來源:FrmSeleccionarDireccion.cs

示例9: ssTipoDocumento_Search

 private void ssTipoDocumento_Search(object sender, EventArgs e)
 {
     try
     {
         if (ActualizandoIU) { return; }
         InfoAsistente.Presupuesto = (Presupuesto)HelperNHibernate.GetEntityByID("Presupuesto", Presupuesto.ID);
         InfoAsistente.Cliente = InfoAsistente.Presupuesto.Cliente;
         InfoAsistente.FechaCreacion = InfoAsistente.Presupuesto.FechaCreacion;
         udtFechaCreacion.Value = InfoAsistente.Presupuesto.FechaCreacion;
         FrmSelectedEntity FrmSeleccionarTipoDocumento = new FrmSelectedEntity();
         InfoAsistente.TipoDocumento = (TipoOrdenProduccion)FrmSeleccionarTipoDocumento.GetSelectedEntity(typeof(TipoOrdenProduccion), "Tipo Orden de Producción");
         if (InfoAsistente.TipoDocumento != null)
         {
             ssTipoDocumento.Text = InfoAsistente.TipoDocumento.Nombre;
             InfoAsistente.Responsable = FrmMain.ObtenerResponsable();
             ssReponsable.Text = (InfoAsistente.Responsable != null) ? InfoAsistente.Responsable.Nombre : "";
         }
         Mostrar();
     }
     catch (Exception ex)
     {
         SoftException.Control(ex);
     }
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:24,代碼來源:FrmAsistenteGeneracionOPdesdePresupuesto.cs

示例10: busVendedor_Search

 private void busVendedor_Search(object sender, EventArgs e)
 {
     FrmSelectedEntity FrmSeleccionar = new FrmSelectedEntity();
     SocioNegocioCliente clliente = SocioNegocio.Clientes.First();
     clliente.SocioNegocioEmpleado = (SocioNegocioEmpleado)FrmSeleccionar.GetSelectedEntity(typeof(SocioNegocioEmpleado), "Vendedor");
     MostrarCliente();
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:7,代碼來源:FrmSocioNegocio.cs

示例11: busArea_Search

 private void busArea_Search(object sender, EventArgs e)
 {
     FrmSelectedEntity FrmSeleccionar = new FrmSelectedEntity();
     SocioNegocioEmpleado empleado = SocioNegocio.Empleados.First();
     empleado.Area = (Area)FrmSeleccionar.GetSelectedEntity(typeof(Area), "Area");
     MostrarEmpleado();
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:7,代碼來源:FrmSocioNegocio.cs

示例12: btnAgregarBancos_Click

 private void btnAgregarBancos_Click(object sender, EventArgs e)
 {
     FrmSelectedEntity FrmSeleccionarPanel = new FrmSelectedEntity();
     String Filtro = "ID NOT IN (";
     String IDs = "";
     foreach (ItemSocioNegocioBanco Item in SocioNegocio.Bancos) { IDs = IDs + "'" + Item.Banco.ID + "',"; }
     if (IDs.Length > 0) { Filtro = Filtro + IDs.Substring(0, IDs.Length - 1) + ")"; }
     else { Filtro = ""; }
     Banco Banco = (Banco)FrmSeleccionarPanel.GetSelectedEntity(typeof(Banco), "Banco", Filtro);
     if (Banco != null)
     {
         UltraGridRow Row = GrillaBancos.DisplayLayout.Bands[0].AddNew();
         Row.Tag = this.SocioNegocio.AddItemBanco();
         ItemSocioNegocioBanco Item = (ItemSocioNegocioBanco)Row.Tag;
         Item.Banco = Banco;
         MostrarBanco(Row);
     }
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:18,代碼來源:FrmSocioNegocio.cs

示例13: ssReporte_Search

 private void ssReporte_Search(object sender, EventArgs e)
 {
     try
     {
         FrmSelectedEntity FrmSeleccionar = new FrmSelectedEntity();
         TipoCaja.Reporte = (Soft.Reporte.Entidades.Reporte)FrmSeleccionar.GetSelectedEntity(typeof(Soft.Reporte.Entidades.Reporte), "Reporte");
         ssReporte.Text = (TipoCaja.Reporte != null) ? TipoCaja.Reporte.Nombre : "";
     }
     catch (Exception ex)
     {
         SoftException.Control(ex);
     }
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:13,代碼來源:FrmTipoCaja.cs

示例14: ssOperacion_Search

 private void ssOperacion_Search(object sender, EventArgs e)
 {
     if (ItemPlantilla == null) { return; }
     FrmSelectedEntity FrmSeleccionar = new FrmSelectedEntity();
     ItemPlantilla.Operacion = (Existencia)FrmSeleccionar.GetSelectedEntity(typeof(Existencia), "Existencia"," EsServicio = 1");
     ssOperacion.Text = (ItemPlantilla.Operacion != null) ? ItemPlantilla.Operacion.Nombre : "";
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:7,代碼來源:FrmPlantilla.cs

示例15: ssTipoUnidad_Search

 private void ssTipoUnidad_Search(object sender, EventArgs e)
 {
     if (ItemPlantilla == null) { return; }
     FrmSelectedEntity FrmSeleccionar = new FrmSelectedEntity();
     ItemPlantilla.TipoUnidad = (TipoUnidad)FrmSeleccionar.GetSelectedEntity(typeof(TipoUnidad), "Tipo Unidad");
     ssTipoUnidad.Text = (ItemPlantilla.TipoUnidad != null) ? ItemPlantilla.TipoUnidad.Nombre : "";
 }
開發者ID:eldersontc,項目名稱:soft-erp,代碼行數:7,代碼來源:FrmPlantilla.cs


注:本文中的Soft.Win.FrmSelectedEntity.GetSelectedEntity方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。