I am developing a c# windows application where I use some combo box. When selecting an item for combo box, I want to move down to the page. So, I have used mouse scroll and while scrolling, the selected item of combo box is changed. please give me solution to stop mouse scrolling.
this.cmdtapchanger.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.cmdtapchanger.FormattingEnabled = true;
this.cmdtapchanger.Items.AddRange(new object[] {
"OFFCIRCUIT",
"ON LOAD"});
this.cmdtapchanger.Location = new System.Drawing.Point(431, 80);
this.cmdtapchanger.Name = "cmdtapchanger";
this.cmdtapchanger.Size = new System.Drawing.Size(70, 21);
this.cmdtapchanger.TabIndex = 21;
this.cmdtapchanger.SelectedIndexChanged += new System.EventHandler(this.cmdtapchanger_SelectedIndexChanged);