Exemplo n.º 1
0
 public ThemedTextBox(bool captureFocus)
     : this()
 {
     if (captureFocus == false)
     {
         return;
     }
     _thief = new KeystrokeThief(CodistPackage.OleComponentManager);
 }
Exemplo n.º 2
0
        public static void Bind(Window window)
        {
            var componentManager = ServiceProvider.GetGlobalServiceAsync <SOleComponentManager, IOleComponentManager>().Result;
            var thief            = new KeystrokeThief(componentManager);

            new System.Windows.Interop.WindowInteropHelper(window).Owner = new IntPtr(CodistPackage.DTE.MainWindow.HWnd);
            window.Activated   += (s, args) => thief.StartStealing();
            window.Deactivated += (s, args) => thief.StopStealing();
            window.Closed      += (s, args) => thief.StopStealing();
        }
Exemplo n.º 3
0
        public static void Bind(Window window)
        {
            ThreadHelper.ThrowIfNotOnUIThread();
            var componentManager = ServiceProvider.GetGlobalServiceAsync <SOleComponentManager, IOleComponentManager>().Result;
            var thief            = new KeystrokeThief(componentManager);

            // window.Owner = Application.Current.MainWindow;
            window.Activated   += (s, args) => thief.StartStealing();
            window.Deactivated += (s, args) => thief.StopStealing();
            window.Closed      += (s, args) => thief.StopStealing();
        }