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.
我的应用程序有两种形式。fLogin 和 fMain。默认形式是 fLogin。用户输入登录名和密码,然后单击确定按钮。然后主窗体显示。我想关闭 fLogin,因为不再需要该表单。如果用户按下移动设备的后退按钮,应用程序将显示 fLogin。我在登录后和 fMain 显示之前尝试了代码“Self.Close”,在 fMain 的 onClose 事件上显示“Application.Terminate”,但没有成功。
谢谢。
尝试使用finish()命令。我这样使用它:
application.getActivity().finish();
希望这可以帮助!