文本未显示在Windows窗体文本框中

时间:2012-03-22 16:11:09

标签: c# winforms

我正在开发一个小型键盘记录器(用于非恶意目的),我想将所有记录的按键写入文本框。目前,除了start和stop方法之外,对WriteOutput的所有调用都不会向框中写入任何内容。我做错了什么?

这是我的代码:

Program.cs的

using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.Drawing;

namespace Logger
{
    /// <summary>
    /// Class with program entry point.
    /// </summary>
    internal sealed class Program
    {
        public static bool log = false;

        private const int WH_KEYBOARD_LL = 13;
        private const int WM_KEYDOWN = 0x0100;
        private static LowLevelKeyboardProc _proc = HookCallback;
        private static IntPtr _hookID = IntPtr.Zero;

        [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        private static extern IntPtr SetWindowsHookEx(int idHook, LowLevelKeyboardProc lpfn, IntPtr hMod, uint dwThreadId);

        [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        [return: MarshalAs(UnmanagedType.Bool)]
        private static extern bool UnhookWindowsHookEx(IntPtr hhk);

        [DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        private static extern IntPtr CallNextHookEx(IntPtr hhk, int nCode, IntPtr wParam, IntPtr lParam);

        [DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
        private static extern IntPtr GetModuleHandle(string lpModuleName);

        private delegate IntPtr LowLevelKeyboardProc(int nCode, IntPtr wParam, IntPtr lParam);

        /// <summary>
        /// Program entry point.
        /// </summary>
        [STAThread]
        private static void Main(string[] args)
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            _hookID = SetHook(_proc);
            Application.Run(new MainForm());
            UnhookWindowsHookEx(_hookID);
        }

        private static IntPtr SetHook(LowLevelKeyboardProc proc)
        {
            using (Process curProcess = Process.GetCurrentProcess())
            using (ProcessModule curModule = curProcess.MainModule)
            {
                return SetWindowsHookEx(WH_KEYBOARD_LL, proc, GetModuleHandle(curModule.ModuleName), 0);
            }
        }       

        private static IntPtr HookCallback(int nCode, IntPtr wParam, IntPtr lParam)
        {
            if (nCode >= 0 && wParam == (IntPtr)WM_KEYDOWN && log == true)
            {               
                int vkCode = Marshal.ReadInt32(lParam);

                MainForm MF = new MainForm();
                //THIS IS THE CALL THAT DOESN'T OUTPUT ANYTHING!
                MF.WriteOutput(vkCode.ToString());
            }
            return CallNextHookEx(_hookID, nCode, wParam, lParam);
        }       
    }
}

Mainform.cs

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;
using System.IO;

namespace Logger
{
    /// <summary>
    /// Description of MainForm.
    /// </summary>
    public partial class MainForm : Form
    {       
        public MainForm()
        {
            InitializeComponent();
        }

        public void WriteOutput(string input)
        {
            output.AppendText(string.Format(input));
            using (StreamWriter sr = new StreamWriter("log.log", true))
            {
                sr.Write(input.ToString());
            }
        }

        private void StartClick(object sender, System.EventArgs e)
        {
            Program.log = true;
            output.AppendText(string.Format("Logging started\n"));
        }

        private void StopClick(object sender, EventArgs e)
        {
            Program.log = false;
            output.AppendText(string.Format("Logging stopped\n"));
        }
    }
}

2 个答案:

答案 0 :(得分:2)

您每次都要实例化一个新表单:

MainForm MF = new MainForm();
MF.WriteOutput(vkCode.ToString());

相反,请重复使用相同的MainForm实例。在Program.cs中:

private static MainForm mainForm;

....

[STAThread]
private static void Main(string[] args)
{
    ...
    mainForm = new MainForm();
    Application.Run(mainForm);
    ...
}

....

mainForm.WriteOutput(vkCode.ToString());

答案 1 :(得分:1)

尝试将vkCode投射到Keys,然后将其写入文本框。

像这样:

if (nCode >= 0 && wParam == (IntPtr)WM_KEYDOWN && log == true) 
{                
    int vkCode = Marshal.ReadInt32(lParam);
    MainForm MF = new MainForm(); 
    MF.WriteOutput((Keys)vkCode); 
}

我之前在switch语句中使用了相同的代码来捕获特定的字母,并且使用强制转换功能很好。

希望这有帮助!