1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

C#で同じコントロールを使いまわす

Last updated at Posted at 2016-12-22

やりたいこと

  • 複数のタブページなどで、同じコントロールを表示したい

結論

単にアクティブになる方へ Controls.Add するだけです。
おそらく、裏でうまいことしてくれているのだと思いますが、どのように処理しているかは気になるところですが、そこまではまだ調べていません。

背景

  • TabControlでPageを2つ作成した
  • それぞのPageにはSplitContainerを配置し左右のペインを用意
  • それぞれのPageのSplitContainerの左ペインでは同じTreeViewを表示したい

実装

private void tabControl1_SelectedIndexChanged(object sender, EventArgs e)
{
    switch (tabControl1.SelectedIndex)
    {
        case 1:
            splitContainer1.Panel1.Controls.Add(treeView1);
            break;
        case 2:
            splitContainer2.Panel1.Controls.Add(treeView1);
            break;
    }
}

サンプル画面

altalt

元となっている記事

以上

1
1
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?