前田稔(Maeda Minoru)の超初心者のプログラム入門
![]()
![]()
System.ComponentModel.ComponentResourceManager resources =
new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
Icon icon;
icon = new Icon(@"C:\TMP\myapp.ico");
this.Icon = icon;
|
![]()