I am trying to bind a combo box to a property on my ViewModel. The target type is short? and I would like to have null be an option. Basically I w
short?
null
If you are using XAML 2009 / .NET 4 then you can use a new syntax for creating generics using XAML.
xmlns="http://schemas.microsoft.com/netfx/2009/xaml/presentation" <Nullable x:TypeArguments="clr:Int16" />
This article has other, more complex, scenerios for generics in XAML.