ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.InternalCheckedListBox.WmReflectCommand C# (CSharp) Method

WmReflectCommand() protected method

This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.
protected WmReflectCommand ( Message &m ) : void
m System.Windows.Forms.Message The Message the top-level window sent to the InternalCheckedListBox control.
return void
            protected override void WmReflectCommand(ref Message m)
            {
                switch (PI.HIWORD((int)m.WParam.ToInt64()))
                {
                    case 1:
                        LbnSelChange();
                        base.WmReflectCommand(ref m);
                        return;

                    case 2:
                        LbnSelChange();
                        base.WmReflectCommand(ref m);
                        return;
                }
                base.WmReflectCommand(ref m);
            }