convert handle to form
Published: 15. January 2009 | Updated: 26. September 2011License: Microsoft Public License (MS-PL)
Categories: Framework » Unsafe Code, Winforms
Tags: C# Controls Windows Winforms
Import namespace
using System.Windows.Forms;
Code
IntPtr handle = this.Handle; Form form = Control.FromHandle(handle) as Form;
| Send us feedback about this snippet » |





