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); }