using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.Diagnostics; namespace CSharpFormLibrary { class IMEPictureBox: System.Windows.Forms.PictureBox { private const int MA_ACTIVATE = 1; private const int MA_ACTIVATEANDEAT = 2; private const int MA_NOACTIVATE = 0x0003; private const int MA_NOACTIVATEANDEAT = 0x0004; protected override void WndProc(ref Message m) { base.WndProc(ref m); if (m.Msg == (Int32)UtilFuncs.WindowsMessage.WM_MOUSEACTIVATE) { m.Result = (IntPtr)MA_NOACTIVATEANDEAT; } } } }