91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 2.50KB
    文件類型: .cs
    金幣: 1
    下載: 0 次
    發布日期: 2020-12-25
  • 語言: C#
  • 標簽: C#??動畫??

資源簡介

窗體淡出的功能實現

資源截圖

代碼片段和文件信息

using?System;
using?System.Collections.Generic;
using?System.Text;
using?System.Runtime.InteropServices;
using?System.Windows.Forms;

namespace?Utility
{
????///?
????///?base?form?class?that?provides?fading/sliding?effects?on?open/close?of?the?form.
????///?

????public?abstract?class?FadeForm?:?Form
????{
????????#region?Win32

????????const?int?AW_HIDE?=?0X10000;
????????const?int?AW_ACTIVATE?=?0X20000;
????????const?int?AW_HOR_POSITIVE?=?0X1;
????????const?int?AW_HOR_NEGATIVE?=?0X2;
????????const?int?AW_SLIDE?=?0X40000;
????????const?int?AW_BLEND?=?0X80000;

????????[DllImport(“user32.dll“?CharSet?=?CharSet.Auto)]
????????private?static?extern?int?AnimateWindow
????????(IntPtr?hwand?int?dwTime?int?dwFlags);

????????#endregion

????????#

評論

共有 條評論