I need to populate wpf combobox with fixed collection of strings (for example months from january to december).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
closed as not a real question by casperOne♦ Jan 9 at 12:42
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
In namespace add declaration:
then add combobox where appropriate:
|
|||
|
|
|
|||
|
|
|
Like this?
|
|||||
|
|
You can put the values in an enum like :
and then in code behind, you can bind it as :
|
|||
|
|
|
You should bind the |
|||
|
|

stringas item type (and neither ComboBoxItem nor an enum), and that the strings should be written in XAML. Then your answer is the correct one. – Clemens Jan 8 at 11:32