C# panelのなかのpctureBox
panel1のなかのpictureBox1
QNo.8077421の続き
http://okwave.jp/qa8077421.html
Form1にPicturBox1をはりつけてダブルクリックでイベントハンドラを作る
Properties.Resources.IconH;は、*.bmp
private void pictureBox1_Click(object sender, EventArgs e)
{
pictureBox1.Image = Properties.Resources.IconH;
}
これは、OK
private void pictureBox1_Click(object sender, EventArgs e)
{
int a = 1;
Control c = this.Controls["PictureBox"+a.ToString()];
((PictureBox)c).Image = Properties.Resources.IconH;
}
これも、OK
ここからがうまくいきません。
panel1を貼り付けPicturBox1をpanel1のなかに。
pictureBox1.Image = Properties.Resources.IconH;
これは、OK
ここからです。
int a = 1;
Control c = this.Controls["PictureBox"+a.ToString()];
((PictureBox)c).Image = Properties.Resources.IconH;
これは、 NG
NullReferenceException はハンドルされませんでした。
オブジェクト参照がオブジェクト インスタンスに設定されていません。
((PictureBox)c).Image = Properties.Resources.IconH;これ
これをつかいたい。
アドバイスをお願いできませんでしょうか。
お礼
ありがとうございます!! 教えて頂いたURLを見ました。cPanelやPleskは、仮想サーバーや専用サーバーで主に使用できるみたいですね。 大変に参考になりました。 ありがとうございました!!