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.
我有一个在 .aspx 中显示的模式窗口。如何以编程方式在 VB.net 中关闭此模式窗口?
这取决于谁关闭了窗户。
是窗户本身吗?然后只需为DialogResult(true或false) 分配一个值,窗口就会隐藏。
DialogResult
true
false
如果是关闭窗口的应用程序,您可以使用子窗口将订阅的事件并在引发时自行关闭。
如果您希望窗口在给定时间后关闭,请在此窗口中使用计时器,并在处理程序中关闭窗口。
确保用户理解当他没有自己关闭窗口时为什么窗口会关闭。