0
私のリソースがシステムに埋め込まれていますが、それらを検索する文字列が画像の名前と一致していますが、引き続きArgumentNullExceptionが発生します。リソースから画像をロードしようとしたときにNullExceptionErrorが発生しました
//Check if currencies are chosen
private void Action()
{
label1.Text = null;
//Checks if items are selected then what currencies are chosen
if (listBox1.SelectedIndex == -1 || listBox2.SelectedIndex == -1)
{
label1.Text = "Please select currencies";
}
else
{
LB1 = listBox1.SelectedItem.ToString();
LB2 = listBox2.SelectedItem.ToString();
Conversion();
}
pictureBox1.Image = Properties.Resources.ResourceManager.GetObject(LB1) as Image;
pictureBox2.Image = Properties.Resources.ResourceManager.GetObject(LB2) as Image;
}
Picture of Resource images
は、事前にどうもありがとうございます!
'SelectedItem.ToString()'は期待していた結果を返しますか?私はあなたがおそらく代わりに 'SelectedValue'を望んでいると思います。 –
ToStringメソッドは正常に動作しているようですが、テストして正しい値を返すので、AUDを押して文字列AUDを返します。本当に奇妙なエラーです –