123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Drawing;
- using System.Windows.Forms;
- namespace Microsoft.Drawing
- {
-
-
-
- public interface IWindow : IWin32Window, IDisposable, IDisposed, IDisposeState
- {
-
-
-
- bool IsHandleCreated
- {
- get;
- }
-
-
-
- bool Visible
- {
- get;
- }
-
-
-
- Size Size
- {
- get;
- }
-
-
-
-
- Graphics CreateGraphics();
- }
- }
|