我想“摇动”我的winforms表单以提供用户反馈,就像在许多移动OS上使用的效果一样。

我显然可以设置窗口的位置,并使用Form1.Location.X等来回移动。但是这种方法的效果很糟糕。我想要更流畅的内容-还是可以摇动整个屏幕?

我将只针对使用.net 4.5的Windows 7。

更新

使用Hans和Vidstige的建议,我想出了以下内容,当窗口最大化时也可以使用-我希望可以选择两个答案,尽管Vidstige希望您也可以投票给我,但我希望其他人也可以。汉斯的答案虽然很重要。

两种形式MainFormShakeForm
MainForm代码

 Private Sub shakeScreenFeedback()

        Dim f As New Shakefrm
        Dim b As New Bitmap(Me.Width, Me.Height, PixelFormat.Format32bppArgb)

        Me.DrawToBitmap(b, Me.DisplayRectangle)

        f.FormBorderStyle = Windows.Forms.FormBorderStyle.None
        f.Width = Me.Width
        f.Height = Me.Height
        f.ShowInTaskbar = False

        f.BackgroundImage = b
        f.BackgroundImageLayout = ImageLayout.Center
        f.Show(Me)
        f.Location = New Drawing.Point(Me.Location.X, Me.Location.Y)

        'I found putting the shake code in the formLoad event didn't work
        f.shake()
        f.Close()

        b.Dispose()

    End Sub

ShakeForm代码
Public Sub shake()
    Dim original = Location
    Dim rnd = New Random(1337)
    Const shake_amplitude As Integer = 10
    For i As Integer = 0 To 9
        Location = New Point(original.X + rnd.[Next](-shake_amplitude, shake_amplitude), original.Y + rnd.[Next](-shake_amplitude, shake_amplitude))
        System.Threading.Thread.Sleep(20)
    Next
    Location = original

End Sub

最佳答案

典型的问题是对窗体的控件太多,使绘画太慢。因此,只需伪造它,创建一个无边界窗口即可显示该格式的位图,然后摇晃该位图。使用窗体的DrawToBitmap()方法创建位图。使用32bppPArgb作为像素格式,它绘制速度比其他所有像素快十倍。

09-20 12:53