IUIWindow.cs 435 B

12345678910111213141516171819
  1. using System;
  2. using Microsoft.Drawing;
  3. namespace Microsoft.Windows.Forms
  4. {
  5. /// <summary>
  6. /// 支持虚拟控件的 Win32 控件接口
  7. /// </summary>
  8. public interface IUIWindow : IUIControl, IWindow, IDisposable, IDisposed, IDisposeState
  9. {
  10. /// <summary>
  11. /// 双缓冲接口
  12. /// </summary>
  13. DoubleBufferedGraphics DoubleBufferedGraphics
  14. {
  15. get;
  16. }
  17. }
  18. }