ボタンの整数配列を別のボタンに渡すにはどうすればよいですか?ここであるボタンから別のボタンに配列を渡す
は、より多くの情報(次のコードは正確に私の元のコードではありませんが、それは私が求めているかを説明)である:
private void button1_Click(object sender, EventArgs e)
{
int[,] array1 = new int[pictureBox1.Height, pictureBox1.Width];
int[,] array2 = new int[pictureBox1.Height, pictureBox1.Width];
array2 = binary(array1);//binary is a function
}
private void button2_Click(object sender, EventArgs e)
{
//I need array2 here
}
は今、私はボタン2に配列2にアクセスしたいです。どうやってやるの?最高の解決策は何ですか?
ありがとうございます。
はhttp://en.wikipedia.org/wiki/Magic_pushbuttonを見て –