以下のテンプレートを使用してモーダルフォームを表示しています
Using tempForm As New CustomForm
'Do Something
StaticClass.StaticMemeber = tempForm
tempForm.ShowDialog
End Using
'I can still access the properties of tempForm here
MsgBox(StaticClass.StaticMemeber.Text)
'However this below returns True
MsgBox(StaticClass.StaticMember.IsDisposed)
Public Class StaticClass
Public Shared StaticMember as Control
End Class
誰かがなぜこれが起こっているのかを理解するのを手伝ってくれますか? ありがとう。