Exemplo n.º 1
0
 public ChildView(string name, string text, ChildFrame parent)
 {
     childFrame = parent;
     this.Name  = name;
     this.Text  = text;
     InitializeComponent();
 }
Exemplo n.º 2
0
        private void MainFrame_Load(object sender, EventArgs e)
        {
            ChildFrame child = new ChildFrame(this);

            childs.Add(child);
        }