23 lines
539 B
C#
23 lines
539 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Exferia_Controles
|
|
{
|
|
public partial class Exferia_Label_InformacionEmpresa : Label
|
|
{
|
|
public Exferia_Label_InformacionEmpresa()
|
|
{
|
|
AutoSize = false;
|
|
Height = 23;
|
|
Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
|
|
TextAlign = ContentAlignment.MiddleLeft;
|
|
|
|
}
|
|
}
|
|
}
|