ListViewCombobox ItemDropDownWith

0
1

How can I set the width of the DroppedDownItems in the property editor?

I have solved this problem by the following code:

 

private void listViewComboBox1_DropDown(object sender, EventArgs e)
{
ListViewComboBox listViewComboBox = sender as ListViewComboBox;
listViewComboBox.ListView.Width = 500;
listViewComboBox.ListView.Invalidate();
}

  • You must to post comments
0
0

Please find attached the sample project.

  • You must to post comments
0
0

Attach a small runnable sample that shows your issue.

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.