C# と VB.NET の質問掲示板

わんくま同盟

ASP.NET、C++/CLI、Java 何でもどうぞ

C# と VB.NET の入門サイト


(過去ログ 60 を表示中)
■34289 / )  Re[2]: pictureboxを透過にしたい
□投稿者/ もろへいや (1回)-(2009/03/25(Wed) 11:22:04)
描画の順番を制御できないのかな・・・
無理やり最初に入れたら一番上に描画されました

InitializeComponent();
Panel p = new Panel();
p.Location = new Point(130, 20);
p.Size = new Size(1, 100);
p.BackColor = Color.Black;
p.TabIndex = 0;
Control[] cc = new Control[this.Controls.Count];
for (int i = 0; i < cc.Length; i++)
{
cc[i] = this.Controls[i];
}
this.Controls.Clear();
this.Controls.Add(p);
this.Controls.AddRange(cc);
返信 編集キー/


管理者用

- Child Tree -