ボタンを押すだけで街灯と光/画像の色が変わる基本的な練習プロジェクトを行っているところです。設計時には 3 つの画像すべてをはっきりと見ることができますが、実行時にはどれも表示されません。私はグーグルで地獄を検索し、約3つの異なる例に従いましたが、何も機能しません.
これは、これまでの 3 つの画像の xaml コードにあるものです
<Image HorizontalAlignment="Left" Height="299" Margin="25,10,0,0" VerticalAlignment="Top" Width="227" Source="images/Stop.png" Name="imgStop"/>
<Image HorizontalAlignment="Left" Height="299" Margin="25,10,0,0" VerticalAlignment="Top" Width="227" Source="images/Caution.png" Name="imgCaution"/>
<Image HorizontalAlignment="Left" Height="299" Margin="25,10,0,0" VerticalAlignment="Top" Width="227" Source="images/Caution.png" Name="imgGo"/>
ここに私のC#コードがあります
private void btnGreen_Click(object sender, RoutedEventArgs e)
{
Image myImage = new Image();
myImage.Width = 227;
BitmapImage myBitmapImage = new BitmapImage();
myBitmapImage.BeginInit();
myBitmapImage.UriSource = new Uri(@"G:\Users\Jason\Documents\C# Projects\WPF\stopLightDemo\stopLightDemo\images\Go.png");
myBitmapImage.DecodePixelWidth = 227;
myBitmapImage.EndInit();
myImage.Source = myBitmapImage;
}
private void btnYellow_Click(object sender, RoutedEventArgs e)
{
}
private void btnRed_Click(object sender, RoutedEventArgs e)
{
}
private void btnClose_Click(object sender, RoutedEventArgs e)
{
this.Close();
}
}
}
私は何が間違っているのでしょうか????
ありがとうございました!!!