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.
我正在使用注销按钮作为单击然后 mdi 表单需要关闭然后登录页面应该出现
在 mobileMDI 中添加以下代码:
Public Class modileMDI Private Sub btnLogoff_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnLogoff.Click Login.Show() Me.Hide() End Sub End Class
我假设注销按钮名为 btnLogoff。