我想实现以下目标(注意 Window 元素的 DataContext 属性):
<Window x:Class="Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
DataContext="{Binding MyDataContext}"/>
Class Window1
Public ReadOnly Property MyDataContext() As IEnumerable(Of String)
Get
Return New String() {"Item1", "Item2"}
End Get
End Property
End Class