Пример #1
0
        public ScreenshotWnd()
        {
            InitializeComponent();

            cButtons.MainWnd = this;

            MainGrid.Opacity = 0;

            Kbd = new Core.GlobalKeyboardHook();
            Kbd.KeyboardPressed += Kbd_KeyboardPressed;
        }
Пример #2
0
        public ClipboardWnd()
        {
            InitializeComponent();

            this.Left = this.Width - this.Width;
            this.Top  = this.Height - this.Height;

            BtnClear_MouseLeftButtonUp(null, null);

            hook = new Core.GlobalKeyboardHook();
            hook.KeyboardPressed += Hook_KeyboardPressed;
        }