I'm trying to add a "fake" item to my source list binded to a combobox.
<Window ...
DataContext="{Binding Source={x:Static local:Singleton.Instance}}">
...
<ComboBox ItemsSource="{Binding MyList}">
--
public List<Object> MyList{ get; private set; }
I want to have a "Add New" as a combobox item that do not belong to MyList, since I need to have only proper objects inside it. If I try to add it programmatically an exception is raised since the source cannot be edit in such a way.