ewSelloLiquidacion.cs
1 # region Usings
2 using System;
3 using System.Collections.Generic;
4 using System.ComponentModel;
5 using System.Drawing;
6 using System.Data;
7 using System.Linq;
8 using System.Text;
9 using System.Windows.Forms;
11 # endregion Usings
12 
13 namespace sage.ew.objetos
14 {
18  public partial class ewSelloLiquidacion : ewSello
19  {
20  # region Constructor
21  public ewSelloLiquidacion()
25  {
26  InitializeComponent();
27 
28  if (!this.DesignMode)
29  {
30  this.Size = new Size(200, 200);
31  this._TipoSello = enumTipoSellos.Imagen;
33  this.Visible = false; // De inicio no lo quiero visible
34  }
35  }
36  # endregion Constructor
37  }
38 }
Sello de asiento de Liquidación que se presenta en la pantalla de asientos contables ...
Clase de recurso fuertemente tipado, para buscar cadenas traducidas, etc.
static System.Drawing.Bitmap stamp_liquidation
Busca un recurso adaptado de tipo System.Drawing.Bitmap.
Clase base para representar un sello de los disponibles en un documento de venta (aparcado para ticke...
Definition: ewSello.cs:29