3

我正在尝试调用AnimateWindow为 WinForms 窗口的显示和隐藏设置动画。

这是win32翻译的副本:

private static class NativeMethods
{
   public const int AW_ACTIVATE = 0x20000;
   public const int AW_HIDE = 0x10000;
   public const int AW_BLEND = 0x80000;
   public const int AW_CENTER = 0x00000010;
   public const int AW_SLIDE = 0X40000;
   public const int AW_HOR_POSITIVE = 0x1;
   public const int AW_HOR_NEGATIVE = 0X2;

   [DllImport("user32.dll", CharSet = CharSet.Auto)]
   public static extern int AnimateWindow(IntPtr hwand, int dwTime, int dwFlags);
}

但问题是如何将调用AnimateWindow放入 WinForms 方案中。一个人建议 OnLoad

protected override void OnLoad(EventArgs e)
{
    base.OnLoad(e);
    AnimateWindow(this.Handle, 200, AW_ACTIVATE | AW_HOR_NEGATIVE | AW_SLIDE);
}

OnClosing

protected override void OnClosing(System.ComponentModel.CancelEventArgs e)
{
    base.OnClosing(e);
    if (e.Cancel == false)
    {
        AnimateWindow(this.Handle, 200, AW_HIDE | AW_HOR_POSITIVE | AW_SLIDE);
    }
}

除了它不起作用。

  • 表单出现时不使用任何动画
  • 在隐藏期间,表单将其水平滑出屏幕设置动画,然后重新出现,然后以正常方式隐藏

与 WinForms混合的正确方法是什么?AnimateWindow


也可以看看

  • .NET AnimateWindow:这个人问了同样的问题。但由于它试图实现其他目标,人们解决了他的问题,而不是回答他的问题。
  • C# WinForms AnimateWindow 问题:这个人对使用AnimateWindow子控件而不是顶级窗口感兴趣。

奖金喋喋不休

当我发现这个错误时,我正在仔细阅读Form -> Show -> Visible -> SetVisibleCore

protected virtual void SetVisibleCore(bool value)
{
   try
   {
      HandleCollector.SuspendCollect();
      //...snip...
   }  
   finally
   {
      HandleCollector.ResumeCollect();
   }
}

很高兴知道每个人都可以引入这些细微的错误。

4

2 回答 2

3

认为 AnimateWindow正常工作有其局限性。例如,它不能很好地与 Aero 配合使用,因此要为滑动窗体设置动画,您需要将 设置BorderStyle为 None。另外,确保StartPosition设置为手动。

简单的例子:

public partial class Form1 : Form {

  public const int AW_ACTIVATE = 0x20000;
  public const int AW_HIDE = 0x10000;
  public const int AW_BLEND = 0x80000;
  public const int AW_CENTER = 0x00000010;
  public const int AW_SLIDE = 0X40000;
  public const int AW_HOR_POSITIVE = 0x1;
  public const int AW_HOR_NEGATIVE = 0X2;

  [DllImport("user32.dll", CharSet = CharSet.Auto)]
  public static extern int AnimateWindow(IntPtr hwand, int dwTime, int dwFlags);

  public Form1() {
    InitializeComponent();
  }

  private void button1_Click(object sender, EventArgs e) {
    Form toastForm = new Form();
    toastForm.ShowInTaskbar = false;
    toastForm.StartPosition = FormStartPosition.Manual;
    toastForm.FormBorderStyle = FormBorderStyle.None;
    toastForm.Size = new Size(256, 64);
    toastForm.Location = new Point(Screen.PrimaryScreen.WorkingArea.Right - toastForm.Width, 
                                   Screen.PrimaryScreen.WorkingArea.Bottom - toastForm.Height);

    Button closeButton = new Button();
    closeButton.Text = "Close";
    toastForm.Controls.Add(closeButton);
    closeButton.Click += delegate { toastForm.Close(); };

    AnimateWindow(toastForm.Handle, 200, AW_ACTIVATE | AW_HOR_NEGATIVE | AW_SLIDE);
    toastForm.Show();
  }
}
于 2011-12-12T16:15:53.830 回答
0

我不确定你的AnimateWindow调用是做什么的,但是当你需要改变底层的原生“东西”来处理 Windows 窗体时,我总是使用 CreateParams() 覆盖。您可能会为您想要实现的目标找到类似的功能。

这是一个透明工具窗口的示例,它在显示时不会激活。

Protected Overrides ReadOnly Property CreateParams() As System.Windows.Forms.CreateParams
        Get
            Dim baseParams As Windows.Forms.CreateParams = MyBase.CreateParams

            baseParams.ExStyle = baseParams.ExStyle Or NativeMethods.ExtendedWindowsStyles.WS_EX_LAYERED Or NativeMethods.ExtendedWindowsStyles.WS_EX_TRANSPARENT Or NativeMethods.ExtendedWindowsStyles.WS_EX_NOACTIVATE Or NativeMethods.ExtendedWindowsStyles.WS_EX_TOOLWINDOW

            Return baseParams
        End Get
    End Property
于 2011-12-12T15:09:29.133 回答