Advertisement
Fhernd

ControlImagen.cs

Aug 16th, 2014
2,584
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.81 KB | None | 0 0
  1. // ===++===
  2. //
  3. //    OrtizOL
  4. //
  5. // ===--===
  6. /*============================================================
  7. //
  8. // Clase: ControlImagen.cs
  9. //
  10. // Original en: http://goo.gl/rrMksE
  11. //
  12. // Propósito: Visualizar la  imagen de la aplicación.
  13. //
  14. ============================================================*/
  15.  
  16. using System;
  17. using System.ComponentModel;
  18. using System.Windows.Forms;
  19.  
  20. namespace NotasCurso.GUI
  21. {
  22.     /// <summary>
  23.     /// Control con imagen de la aplicación.
  24.     /// </summary>
  25.     public partial class ControlImagen : UserControl
  26.     {
  27.         #region Constructores
  28.         /// <summary>
  29.         /// Crea un control de representación del imagen.
  30.         /// </summary>
  31.         public ControlImagen()
  32.         {
  33.             InitializeComponent();
  34.         }
  35.         #endregion
  36.     }
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement