C2017-025 logic added so that dropdown list opens when you click anywhere on the dropdown control

This commit is contained in:
2017-06-21 12:41:22 +00:00
parent dc6468155f
commit c1c5bfd081
2 changed files with 16 additions and 6 deletions

View File

@@ -894,6 +894,10 @@ namespace VEPROMS
{
pnlLater.Enabled = chkLater.Checked;
}
private void cbxAdminTools_Click(object sender, EventArgs e)
{
cbxAdminTools.DroppedDown = true; // expand dropdown list if user clicks anywhere on the dropdown control
}
}
public class AdminTool : IComparable<AdminTool>
{