我有窗口。 Window.DataContext = DataRow。如何將DataRow綁定到TextBlock?
和我有TextBlock。
我需要將DataRow.Array [0]綁定到TextBlock的Text屬性。
我該怎麼做?
編輯:
<Window x:Class="Client.payment.CheckMore"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wpf="http://schemas.microsoft.com/wpf/2008/toolkit" Loaded="Window_Loaded" x:Name="p_this">
<DockPanel>
<TextBlock x:Name="p_idCheck" Text="{Binding Path=Array[0]}"/>
</DockPanel>
</Window>
在代碼:this.DataContext = dateRow.Rows [0];
是否有其他具有約束力的工作? 我的意思是你在創建控件之後設置datacontext,並且我假設呈現。嘗試做之前或提高canexecutechanged事件.. – 2010-11-13 22:09:15
我沒有undastanet你 – Mediator 2010-11-13 22:19:55