我使用dotnetbar设计UI。
private DevComponents.DotNetBar.ComboBoxItem AddressTextBox;
但它没有事件Key_Down 我用
ComboBox address = (ComboBox)AddressTextBox.ContainerControl;
address.KeyDown += new KeyEventHandler(address_KeyDown);
但它有错误Unable to cast object of type 'DevComponents.DotNetBar.RibbonBar' to type 'System.Windows.Forms.ComboBox'.
有什么想法吗?
答案 0 :(得分:0)
我猜AddressTextBox.ContainerControl
不包含类型的对象 System.Windows.Forms.ComboBox