C# ComboBox Questions
-
I am writing a C# windows program There is a very strange problem about C# comboBox Control That is the combobox control's edit control can not deal with mouse operation itself,nor can it deal with the standard operations the edit control can do,such as cut paste copy(actually it does not have the context menu like edit control),Why is that,Is it because I do not make some right property settings in combobox control or this control actually can not deal with that ,I should do it in my own codes,Please Help Great Thanks -- modified at 21:04 Friday 31st March, 2006
-
I am writing a C# windows program There is a very strange problem about C# comboBox Control That is the combobox control's edit control can not deal with mouse operation itself,nor can it deal with the standard operations the edit control can do,such as cut paste copy(actually it does not have the context menu like edit control),Why is that,Is it because I do not make some right property settings in combobox control or this control actually can not deal with that ,I should do it in my own codes,Please Help Great Thanks -- modified at 21:04 Friday 31st March, 2006
the ComboBox has its own set of properties that can be assigned values just as any other control. If you select the control and have the properties windows open (if not go to view --> properties) you should see all the public properties of the control (usually the properties window displays on the bottom right side of the ide's window, unless you have configured visual studio to use floating and not docked windows).
-
the ComboBox has its own set of properties that can be assigned values just as any other control. If you select the control and have the properties windows open (if not go to view --> properties) you should see all the public properties of the control (usually the properties window displays on the bottom right side of the ide's window, unless you have configured visual studio to use floating and not docked windows).
-
Thanks For Help I know I can set these properties,but I want to know how to set the properties to meet my requirements to let the combobox control's edit control part work like odinary edit control