我可以明显地设置窗口的位置,并用Form1.Location.X等来回移动,但是这种方法的效果是可怕的.我想要一些更流畅的东西 – 还有一种方法来摇摆整个屏幕?
我只会使用.net 4.5来定位Windows 7.
更新
使用汉斯和VIDstige的建议,我已经提出了以下,当窗口最大化时也是如此 – 我希望我可以选择两个答案,我已经投票了你的答案,而VIDstige,并希望其他人也会.汉斯的回答虽然触及了所有的突出点.
两种形式MainForm和ShakeForm
主窗体代码
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.Form@R_301_5559@Style = windows.Forms.Form@R_301_5559@Style.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 = originalEnd Sub解决方法 典型的问题是在窗体上有太多的控件,使绘画太慢.所以只是假的,创建一个无边框的窗口,显示窗体的位图,并摇动那个.使用表单的DrawToBitmap()方法创建位图.对于像素格式使用32bppPArgb,它比其他格式要快十倍. 总结
以上是内存溢出为你收集整理的c# – 在屏幕上摇动窗体全部内容,希望文章能够帮你解决c# – 在屏幕上摇动窗体所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)