私は動的に銀色の光でボタンを作成しています
HistoryButtton = new Button();
HistoryButtton.Content = "History";
HistoryButtton.Height = GetPercentageValue(TotalHeight, 8);
HistoryButtton.Width = GetPercentageValue(TotalHeight, 15);
私はこの解決策を試しました
ImageBrush brush = new ImageBrush();
brush.ImageSource = new BitmapImage(new Uri(@"Images/history.png", UriKind.Relative));
HistoryButtton.Background = brush;
しかし、それは機能していません。私もこの解決策を試しました
Uri uri = new Uri("/Images/history.png", UriKind.Relative);
BitmapImage imgSource = new BitmapImage(uri);
Image image = new Image();
image.Source = imgSource;
HistoryButtton.Content = image;
しかし、この解決策も機能しません。助けてください。よろしくお願いします。