0
爲什麼綁定到ValueTuple
屬性成員(如Item1,Item2等)不工作?ValueTuple與WPF綁定
<TextBlock x:Name="txtTest" Text="{Binding Item1}" />
代碼:
txtTest.DataContext = ("Item A", "Another Item..");
輸出窗口:
BindingExpression path error: 'Item1' property not found on 'object' ''ValueTuple`2'
但是在Tuple
它總是奏效。
'this.DataContext = new Tuple(「item 1」,「item 2」);'這工作正常。 –
AnjumSKhan
@AnjumSKhan對。我已經在我的問題中提到過了。 – dovid