現在WinFormを使って
サーバーからダウンロードした画像を動的に生成したpictureBoxに動的に画像を入れ替えていきたいのですが
リソースにサーバーからダウンロードした画像を自動で登録する方法がわかりません、、、
何か調べかたはありますでしょうか、、、
サーバーからダウンロードする回数は現在は15分毎にしています
動的にPictureBoxを生成するところまではできたのでコードを記載させて頂きます
これにどうかサーバーからダウンロードしてある場所に保管してある画像を動的に登録するために
リソースへの動的な登録方法を教えていただければ幸いです
よろしくお願いいたします。
C#
1 int[] BTN_Array = { 0,2 }; 2 int BTN_Array_Number = BTN_Array.Length; 3 4 int Location_X = 10; 5 int Location_Y = 0; 6 7 for (int Index = 0; Index < BTN_Array_Number; Index++) 8 { 9 10 Location_X += 350; 11 12 if (Location_X > 1400) 13 { 14 Location_Y += 350; 15 16 Location_X = 360; 17 18 } 19 20 Button newButton = new Button(); 21 this.Controls.Add(newButton); 22 23 24 newButton.Location = new Point(Location_X, Location_Y); 25 // newButton.Name = BTN_Array[Index].ToString(); 26 newButton.Size = new Size(350, 400); 27 newButton.Name = string.Format("newButton_Click{0}", Index); 28 29 newButton.Click += new EventHandler(newButton_Click); 30 }
あなたの回答
tips
プレビュー