Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Windows.Forms;
- namespace R705FormulariosMdiHijos
- {
- public partial class FormularioPadre : Form
- {
- public FormularioPadre()
- {
- InitializeComponent();
- }
- private void tmiNuevoMdiHijo_Click(object sender, EventArgs e)
- {
- FormularioHijo formularioHijoNuevo = new FormularioHijo();
- formularioHijoNuevo.MdiParent = this;
- formularioHijoNuevo.Show();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement