テキストボックスに値を取り、それに別のユーザー入力値を追加することになっている BuyShares() というメソッドがあります。ユーザーが [OK] をクリックしてメソッドを開始するメッセージボックスを使用したいと思います。唯一の問題は、メソッドを呼び出せないように見えることです。これが方法です。
public void BuyShares(int anAmount)
{
int newShares;
newShares = GetInvestmentShare() - anAmount;
SetInvestmentShare(newShares);
}
そして、これが私が設定したメッセージボックスです
private void button1_Click(object sender, EventArgs e)
{
DialogResult result;
result = MessageBox.Show("Your transaction is complete", "Success", MessageBoxButtons.OK);
if(result==DialogResult.OK)
{
txtStockSharesTab3.Text=??????
}
これは Windows フォーム アプリケーションであり、プログラムにはいくつかの異なるクラスがあります。