Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created June 1, 2014 21:34
Show Gist options
  • Save Fhernd/ed2de7ab5ceee493c646 to your computer and use it in GitHub Desktop.
Save Fhernd/ed2de7ab5ceee493c646 to your computer and use it in GitHub Desktop.
Control con la imagen de título de la aplicación.
// ===++===
//
// OrtizOL
//
// ===--===
/*============================================================
//
// Clase: ControlImagen.cs
//
// Original en: http://goo.gl/vkZCG1
//
// Propósito: Control para visualización de una imagen.
//
============================================================*/
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 ElTriangulo.GUI
{
public partial class ControlImagen : UserControl
{
/// <summary>
/// Control de presentación de imagen de título de la aplicación.
/// </summary>
public ControlImagen()
{
InitializeComponent();
// Asigna una imagen al control.
pbxTitulo.BackgroundImage = Properties.Resources.Titulo;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment