4 using System.Collections.Generic;
7 using System.Threading.Tasks;
20 public dynamic _Documento {
get;
set; }
25 public dynamic _DocLinea {
get;
set; } = null;
33 public delegate
void _Click_Before_Handler(ref Boolean tlOk);
38 public delegate
void _Click_After_Handler(Boolean tlOk);
55 Text =
"Etiquetas de Cliente";
58 Click +=
new EventHandler(btEtiquetasCliente_Click);
72 if (_Click_Before != null) _Click_Before(ref llOk);
77 Dictionary<string, int> lstClientes =
new Dictionary<string, int>();
79 if (_Documento != null)
81 lstClientes.Add(_Documento._Cabecera._Cliente, _Documento._Cabecera._Env_cli);
87 cliente.Forms.frmEtiquetasClientes frmEtiquetas =
new cliente.Forms.frmEtiquetasClientes();
88 frmEtiquetas._Documento = _Documento;
89 frmEtiquetas._Clientes = lstClientes;
96 if (_Click_After != null) _Click_After(llOk);
btEtiquetasCliente()
Constructor
Interfaz utilizada en los controles que se añaden en los perfiles
_Click_After_Handler _Click_After
_Click_After_Handler
_Click_Before_Handler _Click_Before
_Click_Before_Handler
Botón para mostrar el formulario de etiquetas de clientes
void btEtiquetasCliente_Click(object sender, EventArgs e)