private void Control_HandleCreated(object sender, EventArgs e)
    {
        var info = new NativeMwthods.COMBOBOXINFO();

        info.cbSize = Marshal.SizeOf(info);
        NativeMwthods.GetComboBoxInfo(this.Control.Handle, ref info);
        listBoxHelper = new NativeMwthods.ListBoxHelper(info.hwndList);
    }
Beispiel #2
0
    protected override void OnHandleCreated(EventArgs e)
    {
        base.OnHandleCreated(e);
        var info = new NativeMwthods.COMBOBOXINFO();

        info.cbSize = Marshal.SizeOf(info);
        NativeMwthods.GetComboBoxInfo(this.Handle, ref info);
        listBoxHelper = new NativeMwthods.ListBoxHelper(info.hwndList);
    }