Beispiel #1
0
        public frmAltaAlumno()
        {
            InitializeComponent();
            Bitmap img = new Bitmap(Application.StartupPath + @"\fondos\fondoAlumno.JPG");

            this.BackgroundImage       = img;
            this.BackgroundImageLayout = ImageLayout.Stretch;
            this.btnAgregar.Enabled    = false;

            foreach (EColores colorSala in EColores.GetValues(typeof(EColores)))
            {
                this.cmbColorSala.Items.Add(colorSala);
            }
            btnModificar.Text = "Cancelar";
        }