我在使用外部组件时遇到问题,可在此处找到: https://www.codeproject.com/Articles/27738/NET-component-that-simplifies-tracking-of-system
我遇到的问题是我想与主线程(frmMain)交谈,但是当发生这种情况时, SystemIdleTimer1_OnEnterIdleState 想要创建一个新表单因为 SystemIdleTimer1 是一个不同的主题。
Private Sub SystemIdleTimer1_OnEnterIdleState(ByVal sender As System.Object, ByVal e As EdinDazdarevic.IdleEventArgs) Handles SystemIdleTimer1.OnEnterIdleState
frmMain.stopActiveTimer()
MessageBox.Show("Entered idle state")
End Sub
如何在当前场景中调用主线程中的数据?
StackOverflow上有一些类似的问题,但我很难将所有内容联系在一起: