TextBox的自动完成功能涉及哪些WndProc消息?

时间:2011-12-14 19:01:07

标签: .net winforms autocomplete textbox wndproc

此问题与this one有关。我想知道当显示自动完成UI时,TextBox控件接收的Windows消息:

class MyTextbox : TextBox
{
    protected override void WndProc(ref Message m)
    {
        // what messages are received here when 
        // the autocomplete UI is shown and hidden?
        base.WndProc(ref m);
    }
}

0 个答案:

没有答案