На главной форме/родитель использую код:
- Код: Выделить всё
Private Sub MDIParentMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim NewLoginForm As New LoginForm
If PicPath.Trim.Length = 0 Then
MsgBox("Please, setup background picture for the main window! ;)")
Else
Try
Dim c As Control
For Each c In Me.Controls
If TypeOf c Is MdiClient Then
c.BackgroundImage = Image.FromFile(PicPath)
End If
Next c
Application.DoEvents()
Catch ex As Exception
End Try
End If
End Sub
При перемещении любой дочерней формы, она тянется как след и мерцает. Сильно раздражает!
Как сделать так, чтобы при перемещении не было никакого следа и мерцания?
Всем спасибо!