Created
June 8, 2014 22:46
Representa el control de imagen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ===++=== | |
// | |
// OrtizOL | |
// | |
// ===--=== | |
/*============================================================ | |
// | |
// Clase: ControlImagen.cs | |
// | |
// Original en: http://goo.gl/vIMJaJ | |
// | |
// Propósito: Control para el encabado de la aplicación. | |
// | |
============================================================*/ | |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel; | |
using System.Drawing; | |
using System.Data; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using System.Windows.Forms; | |
namespace N1_EleccionesCupi2.GUI | |
{ | |
/// <summary> | |
/// Control para contener el encabezado (imagen) de la aplicación. | |
/// </summary> | |
public partial class ControlImagen : UserControl | |
{ | |
public ControlImagen() | |
{ | |
InitializeComponent(); | |
// Establece la imagen de encabezado. | |
pbxEncabezado.BackgroundImage = Properties.Resources.Encabezado; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment