Advertisement
Fhernd

ControlImagen.cs

Sep 3rd, 2014
1,042
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.96 KB | None | 0 0
  1. // ===++===
  2. //
  3. //    OrtizOL
  4. //
  5. // ===--===
  6. /*============================================================
  7. //
  8. // Clase: ControlImagen.cs
  9. //
  10. // Original en: http://goo.gl/vIMJaJ
  11. //
  12. // Propósito: Control para el encabado de la aplicación.
  13. //
  14. ============================================================*/
  15. using System;
  16. using System.Collections.Generic;
  17. using System.ComponentModel;
  18. using System.Drawing;
  19. using System.Data;
  20. using System.Linq;
  21. using System.Text;
  22. using System.Threading.Tasks;
  23. using System.Windows.Forms;
  24.  
  25. namespace N1_EleccionesCupi2.GUI
  26. {
  27.     /// <summary>
  28.     /// Control para contener el encabezado (imagen) de la aplicación.
  29.     /// </summary>
  30.     public partial class ControlImagen : UserControl
  31.     {
  32.         public ControlImagen()
  33.         {
  34.             InitializeComponent();
  35.  
  36.             // Establece la imagen de encabezado.
  37.             pbxEncabezado.BackgroundImage = Properties.Resources.Encabezado;
  38.         }
  39.     }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement