Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created August 16, 2014 11:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/41dc5f2ff5612c06f5ec to your computer and use it in GitHub Desktop.
Save Fhernd/41dc5f2ff5612c06f5ec to your computer and use it in GitHub Desktop.
Control para la imagen de la aplicación.
// ===++===
//
// OrtizOL
//
// ===--===
/*============================================================
//
// Clase: ControlImagen.cs
//
// Original en: http://goo.gl/rrMksE
//
// Propósito: Visualizar la imagen de la aplicación.
//
============================================================*/
using System;
using System.ComponentModel;
using System.Windows.Forms;
namespace NotasCurso.GUI
{
/// <summary>
/// Control con imagen de la aplicación.
/// </summary>
public partial class ControlImagen : UserControl
{
#region Constructores
/// <summary>
/// Crea un control de representación del imagen.
/// </summary>
public ControlImagen()
{
InitializeComponent();
}
#endregion
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment