0
 if (!existed_channel.Contains(channel_name))
            {

                if (x)
                {
                    tabpagex.BackColor = Color.Ivory;

                    tabControl1.TabPages.Add(tabpagex);

                    client_chat c = new client_chat(channel_name, owner);   //Here the client_chat is my Winform that do all the chatting thing.
                    c.TopLevel = false;
                    c.Visible = true;
                    c.BackColor = Color.Ivory;
                    c.FormBorderStyle = FormBorderStyle.None;
                    c.Dock = DockStyle.Fill;
                    tabControl1.TabPages[tab_index].Controls.Add(c);   //Here i fill up the tabpage with client_chat winform

                    tab_index++;                        //Increment the index everytime i add an tabpage.
                    existed_channel.Add(channel_name);  //Add the name of the page to an arraylist, to make sure everytime there is no duplicate page
                }
            }

ご覧のとおり、(タブページで) Winform の 1 つを閉じると、データを送り返し、tab_index を変更する必要があります。Winformとタブページの両方を閉じることができますが、データを送り返す方法に苦労しています。childForm から parentForm にデータを送り返す方法は知っていますが、ここでの状況は少し異なります。

4

1 に答える 1

0

すべてのコントロールがアクセスできる親でグローバルプロパティを使用できます

于 2012-04-04T01:37:28.327 に答える