Desktop Functions: Smart Device Functions:
|
Search Results for "IDANI_" in [All]user32Only the IDANI_CAPTION constant will result in any animation. Any other constants have not been implemented on any Windows platform! 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.
public const System.Int32 IDANI_OPEN = 1;
public const System.Int32 IDANI_CAPTION = 3;
DrawAnimatedRects(form.Handle, IDANI_CAPTION, ref to, ref from);
DrawAnimatedRects(form.Handle, IDANI_CAPTION, ref from, ref to);
static const int IDANI_OPEN = 1;
static const int IDANI_CAPTION = 3;
DrawAnimatedRects(this->Handle.ToInt32(), IDANI_CAPTION, to, from);
DrawAnimatedRects(this->Handle.ToInt32(), IDANI_CAPTION, from, to); Constants2: IDANI_
|