Advertisement
Guest User

Untitled

a guest
Dec 1st, 2015
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public ObservableCollection<string> ComboBoxItems {get;set;}
  2.  
  3. public MainWindow()
  4. {
  5. ComboBoxItems = new ObservableCollection<string>();
  6. ComboBoxItems.Add("one");
  7. ComboBoxItems.Add("two");
  8.  
  9. DataContext = this;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement