Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created June 8, 2014 22:46
Show Gist options
  • Save Fhernd/d39614aa4af4acb72d76 to your computer and use it in GitHub Desktop.
Save Fhernd/d39614aa4af4acb72d76 to your computer and use it in GitHub Desktop.
Representa el control de imagen.
// ===++===
//
// 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