Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 17, 2014 01:04
Show Gist options
  • Save Fhernd/a55a0a1b3c92e7ee53ae to your computer and use it in GitHub Desktop.
Save Fhernd/a55a0a1b3c92e7ee53ae to your computer and use it in GitHub Desktop.
Control para el título de la aplicación.
// ===++===
//
// OrtizOL
//
// ===--===
/*============================================================
//
// Clase: ControlTitulo.cs
//
// Original en: http://goo.gl/sTivq7
//
// Propósito: Presentar el título de la aplicación como
// imagen.
//
============================================================*/
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
namespace JuegosCelulares.GUI
{
/// <summary>
/// Control para la visualización de la imagen.
/// </summary>
public partial class ControlTitulo : UserControl
{
/// <summary>
/// Crea una nueva instancia de este control.
/// </summary>
public ControlTitulo()
{
InitializeComponent();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment