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