我有一個函數如何從一個函數值傳遞到另一個在C#
private void button_Click(object sender, RoutedEventArgs e)
{
random();
}
private void random()
{
//other code
ImageBrush background = new ImageBrush();
background.ImageSource = new System.Windows.Media.Imaging.BitmapImage(new Uri(actorUri, UriKind.Relative));
//other code
}
我要訪問按鈕的點擊功能背景變量 請告訴我如何訪問...
哪些變量? –
隨機函數中的背景變量 –