■79038 / ) |
Re[1]: コンボボックで最初に▼をクリックした時の動作について |
□投稿者/ 魔界の仮面弁士 (658回)-(2016/03/03(Thu) 12:33:40)
|
■No79033 (Hiro さん) に返信 > コンボボックで最初に▼をクリックした時、リストが開いてすぐ閉じてしまう現象を回避したいと考えています。
これでどうでしょう。あまりチェックしていないですけど。
Public Class Form1 Private Sub DropDown(ByVal sender As Object, ByVal e As EventArgs) RemoveHandler Application.Idle, AddressOf DropDown ComboBox1.DroppedDown = True End Sub
Private Sub ComboBox1_Enter(ByVal sender As Object, ByVal e As System.EventArgs) Handles ComboBox1.Enter AddHandler Application.Idle, AddressOf DropDown End Sub End Class
|
|