I have a public constant string on my view model that I want to bind to the
sys:string
inside the xaml snippet below:
<ComboBox.ItemsSource>
<CompositeCollection>
<sys:String></sys:String>
<CollectionContainer Collection="{Binding VMCollection, Source={StaticResource proxy}}" />
</CompositeCollection>
</ComboBox.ItemsSource>
It would be easy if String had a content property or something, but just trying to figure out the best way to do this.
Personally, I think it looks like you should be combining these options (that are available) in your ViewModel anyway. (Aren't these the options that should be "presented" to the user? even if you create an entire new UI for this, will the options be the same?)
But to answer your question..
This works