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.
UI コントロールに入力されたデータ値を C# のような C++ 関数に送信する方法を教えてください。
SaveData(txtUsername.value,txtAge.value){ }
UI から入力されたデータを C++ 関数に送信する方法
ありがとう、
SaveData を呼び出し、txtUsername.value と txtAge.value を ui テキスト ボックスの値として渡すと、次のようになります。
SaveData(txtUsername.value,txtAge.value);
これらの値を事前定義された変数に保存するには、次のようなことができるはずです。
SaveData(string username, int age) { usernameVar.setValue(username); ageVar.setValue(age); }