天天看點

使用C#實作WinForm窗體的動畫效果

原文出處

using System.Runtime.InteropServices;

 public class Win32

 {

  public const Int32 AW_HOR_POSITIVE = 0x00000001; // 從左到右打開視窗

  public const Int32 AW_HOR_NEGATIVE = 0x00000002; // 從右到左打開視窗

  public const Int32 AW_VER_POSITIVE = 0x00000004; // 從上到下打開視窗

  public const Int32 AW_VER_NEGATIVE = 0x00000008; // 從下到上打開視窗

  public const Int32 AW_CENTER = 0x00000010; //若使用了AW_HIDE标志,則使視窗向内重疊;若未使用AW_HIDE标志,則使視窗向外擴充。

  public const Int32 AW_

使用C#實作WinForm窗體的動畫效果
使用C#實作WinForm窗體的動畫效果

轉載于:https://my.oschina.net/huxuanhui/blog/5785