Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than user32, prefix the name with the module name and a period.
DrawAnimatedRects (user32)
.
C# Signature:
[DllImport("user32.dll")]
static extern bool DrawAnimatedRects(IntPtr hwnd, int idAni,
[In] ref RECT lprcFrom, [In] ref RECT lprcTo);
Only the IDANI_CAPTION constant will result in any animation. Any other constants have not been implemented on any Windows platform!
Tips & Tricks:
Since only IDANI_CAPTION is implemented, to get the effect of IDANI_OPEN, simply swap the lprcFrom and lprcTo rectangles, but still specify the IDANI_CAPTION constant.
Sample Code:
/// <summary>
/// This constant is not implemented on any Windows platform!
/// </summary>
public const System.Int32 IDANI_OPEN = 1;
/// <summary>
/// The window caption will animate from lprcFrom to lprcTo.
/// </summary>
public const System.Int32 IDANI_CAPTION = 3;
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential)]
struct RECT
{
public RECT(System.Drawing.Rectangle rectangle)
{
Left = rectangle.Left;
Top = rectangle.Top;
Right = rectangle.Right;
Bottom = rectangle.Bottom;
}
public RECT(System.Drawing.Point location, System.Drawing.Size size)
{
Left = location.X;
Top = location.Y;
Right = location.X + size.Width;
Bottom = location.Y + size.Height;
}
public System.Int32 Left;
public System.Int32 Top;
public System.Int32 Right;
public System.Int32 Bottom;
}
[System.Runtime.InteropServices.DllImport("user32.dll")]
static extern bool DrawAnimatedRects(System.IntPtr hwnd, int idAni,
[System.Runtime.InteropServices.In] ref RECT lprcFrom,
[System.Runtime.InteropServices.In] ref RECT lprcTo);
[System.Runtime.InteropServices.DllImport("user32.dll")]
static extern bool GetWindowRect(System.IntPtr hWnd, out RECT lpRect);
/// <summary>
/// Show or hide a form with animation.
/// </summary>
/// <param name="form">The form reference to be animated.</param>
/// <param name="show">If true the form will be animated as if opening, otherwise as if closing.</param>
static public void ShowHideAnimated(System.Windows.Forms.Form form, System.Boolean show)
{
RECT from = new RECT(form.Location, form.Size);
RECT to;
[DllImport("user32.dll", SetLastError = true)]
int FindWindow(String^ lpClassName, String^ lpWindowName);
extern "C++" int FindWindow(String^ lpClassName, String^ lpWindowName);
[DllImport("user32.dll", SetLastError = true)]
int FindWindowEx(int hwndParent, int hwndChildAfter,
extern "C++" int FindWindowEx(int hwndParent, int hwndChildAfter,
String^ lpszClass, String^ lpszWindow);
if (show) {
DrawAnimatedRects(this->Handle.ToInt32(), IDANI_CAPTION, to, from);
this->Show();
}
else {
this->Hide();
DrawAnimatedRects(this->Handle.ToInt32(), IDANI_CAPTION, from, to);
}
}
Comment from admin@paradisim.net : When you post your examples, let people know if/who wrote the example that way Myself & Others can give credit to you if it gets re-used in our own code! https://www.pinvoke.net/emoticons/regular_smile.gif
The DrawAnimatedRects API
7/11/2007 4:24:30 PM - -87.0.250.181
IDANI_ - DrawAnimatedRects constants
5/15/2017 4:40:46 AM - -94.229.131.27
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).