Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ===++===
- //
- // 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;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement