x8917d01b98173f4c.cs
上传用户:xlxx0122
上传日期:2015-04-24
资源大小:3904k
文件大小:1k
源码类别:

.net编程

开发平台:

C#

  1. namespace Sunisoft.IrisSkin
  2. {
  3.     using System;
  4.     using System.Windows.Forms;
  5.     internal class x8917d01b98173f4c : xbd3f2493841f18a1
  6.     {
  7.         public x8917d01b98173f4c(Control control, SkinEngine engine) : base(control, engine)
  8.         {
  9.         }
  10.         protected virtual void AfterWndProc(ref Message m)
  11.         {
  12.         }
  13.         protected virtual bool BeforeWndProc(ref Message m)
  14.         {
  15.             return true;
  16.         }
  17.         protected override void DoInit()
  18.         {
  19.             base.DoInit();
  20.             base.AssignHandle(base.Ctrl.Handle);
  21.         }
  22.         protected override void WndProc(ref Message m)
  23.         {
  24.             if (base.CanPaint)
  25.             {
  26.                 if (this.BeforeWndProc(ref m))
  27.                 {
  28.                     base.WndProc(ref m);
  29.                 }
  30.                 this.AfterWndProc(ref m);
  31.             }
  32.             else
  33.             {
  34.                 base.WndProc(ref m);
  35.             }
  36.         }
  37.     }
  38. }