WPF: Xaml, create an observable collection<object> in xaml in Dot Net 4.0
- by Aran Mulholland
the web site says you can in dot net 4.0
I cant seem to do it though, what assesmbly references and xmlns' do i need
the following does not work
xmlns:coll="clr-namespace:System.Collections.ObjectModel;assembly=mscorlib"
<coll:ObservableCollection x:TypeArguments="x:Object">
<MenuItem Command="ApplicationCommands.Cut"/>
…