このような画像をロードしたい:
void info(string channel)
{
//Something like that
channelPic.Image = Properties.Resources.+channel
}
やりたくないから
void info(string channel)
{
switch(channel)
{
case "chan1":
channelPic.Image = Properties.Resources.chan1;
break;
case "chan2":
channelPic.Image = Properties.Resources.chan2;
break;
}
}
このようなことは可能ですか?
このクラスで使用されるキャッシュされたResourceManager
を返す_System.Resources.ResourceManager
_をいつでも使用できます。 _chan1
_と_chan2
_は2つの異なる画像を表すため、System.Resources.ResourceManager.GetObject(string name)
を使用して、プロジェクトリソースと入力に一致するオブジェクトを返すことができます
例
_object O = Resources.ResourceManager.GetObject("chan1"); //Return an object from the image chan1.png in the project
channelPic.Image = (Image)O; //Set the Image property of channelPic to the returned object as Image
_
注意:Resources.ResourceManager.GetObject(string name)
は、指定された文字列がプロジェクトリソースで見つからなかった場合、null
を返す場合があります。
おかげで、
これが役立つことを願っています:)
これは ResourceManager
を使用して実行できます。
public bool info(string channel)
{
object o = Properties.Resources.ResourceManager.GetObject(channel);
if (o is Image)
{
channelPic.Image = o as Image;
return true;
}
return false;
}
WPFでこれを試してください
StreamResourceInfo sri = Application.GetResourceStream(new Uri("pack://application:,,,/WpfGifImage001;Component/Images/Progess_Green.gif"));
picBox1.Image = System.Drawing.Image.FromStream(sri.Stream);
画像がリソースファイルにある場合、ResourceManagerは機能します。プロジェクト内の単なるファイル(ルートとしましょう)の場合は、次のようなものを使用して取得できます。
System.Reflection.Assembly assembly = System.Reflection.Assembly.GetExecutingAssembly();
System.IO.Stream file = Assembly .GetManifestResourceStream("AssemblyName." + channel);
this.pictureBox1.Image = Image.FromStream(file);
または、WPFを使用している場合:
private ImageSource GetImage(string channel)
{
StreamResourceInfo sri = Application.GetResourceStream(new Uri("/TestApp;component/" + channel, UriKind.Relative));
BitmapImage bmp = new BitmapImage();
bmp.BeginInit();
bmp.StreamSource = sri.Stream;
bmp.EndInit();
return bmp;
}
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(444, 25);
this.toolStrip1.TabIndex = 0;
this.toolStrip1.Text = "toolStrip1";
object O = global::WindowsFormsApplication1.Properties.Resources.ResourceManager.GetObject("best_robust_ghost");
ToolStripButton btn = new ToolStripButton("m1");
btn.DisplayStyle = ToolStripItemDisplayStyle.Image;
btn.Image = (Image)O;
this.toolStrip1.Items.Add(btn);
this.Controls.Add(this.toolStrip1);