vb2005パネルでちらつきを減らすにはどうすればよいですか? 親パネル内には、私が使用している他のパネルが2つあります。パネル内の画像を変更するとちらつきが減少する
最も外側のパネルには背景スプライトが含まれ、最も内側の2つのパネルは背景スプライトの場所に合わせて変更されるオーバーレイです。
オーバーレイスプライトを変更するとき、フリッカーを減らして、あるスプライトから次のスプライトへスムーズに移行したいと思います。新しい値は、あなたがこの答えを好きでするつもりはない
Private Sub TrackBar2_Scroll(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TrackBar2.Scroll, TrackBar1.Scroll
If (Panel2.Tag <> TrackBar1.Value) Then
Panel2.Tag = TrackBar1.Value
Panel2.BackgroundImage = tops(TrackBar1.Value) //img array for the top panel
Panel2.Update()
End If
If (Panel3.Tag <> TrackBar2.Value) Then
Panel3.Tag = TrackBar2.Value
If (TrackBar2.Value > 0) Then
Panel3.Location = New Point(182, 210)
Else
Panel3.Location = New Point(182, 209)
End If
Panel3.BackgroundImage = bottoms(TrackBar2.Value)//img array for the bottom panel
Panel3.Update()
End If
興味深い方法 – Jim