Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
アプリケーションに 5 つのフォームがあり、そこからあるフォームの変数を使用して別のフォームで呼び出したいと考えています。洗車フォームと下取りフォームがあります。洗車の合計を呼び出し、それを 1 日の終わりの販売の合計で下取りに追加したい場合、どうすればよいでしょうか。
このような変数にアクセスして変更するには、フォームのゲッターとセッターを使用する必要があります。
public class CarWash: Form { ... public type carWashVariable { get; set; } ... } From Trade form: public void button1_Click(object sender, EventArgs e) { MessageBox.Show(CarWash.carWashVariable); }