当窗体最小化VB,NET时,Picturebox会锁定

时间:2016-06-15 11:33:25

标签: vb.net locking picturebox

我有一个在图片框中绘制的VB.NET GUI。每次最小化表单时,对图片框GUI的控制都被锁定。在正常的编辑行为中,我确实非常关注GUI。 Windows控件也继续工作。这只是图片框。有人知道是什么原因导致的吗?

这是我从网上做的一些代码,我认为只是流式图形。 Runcolor是我的GUI的一部分。

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    Me.Show()
    Me.Focus()

    'G = Me.CreateGraphics
    'BB = New Bitmap(Me.Width, Me.Height)
    StartGameLoop()
End Sub

Private Sub StartGameLoop()
    Do While IsRunning = True
        Application.DoEvents()
        'Runcolor()
        DrawGraphics()
        '  TickCounter()
    Loop
End Sub

Private Sub DrawGraphics()
    GUImain.GUIrunning()
End Sub

因此,每次最小化窗体或背景时,运行GUI的图片框都会锁定,或者实际上运行GUI的代码会锁定。

此致

0 个答案:

没有答案