リソースデザイナ
- リソースデザイナ
文字列、イメージ、アイコン、オーディオ、ファイルをリソースとして管理できる
C#の場合は、[MyNamespace].Properties.Resourcesで簡単にアクセスできる
[MyNamespace]はプロジェクトの名前空間
Vbの場合、My.Resourcesで簡単にアクセスできる
private
SoundPlayer player = new SoundPlayer();pictureBox1.Image = ResourceSample.Properties.Resources.丸; //画像
pictureBox2.Image = ResourceSample.Properties.Resources.warning.ToBitmap(); //アイコン
textBox1.Text = ResourceSample.Properties.Resources.Foobar; //テキストファイル
textBox2.Text = ResourceSample.Properties.Resources.StringResource; //文字列
player.Stream = ResourceSample.Properties.Resources.Windows_XP_Startup; //オーディオ
player.PlayLooping();



