我正在使用devexpress,我想用ListBox做一個綁定,但是我有一個錯誤。這裏我的代碼:WPF綁定Listbox layoutpanel
<ListBox x:Name="_list" >
<ListBox.ItemTemplate>
<DataTemplate>
<dxd:LayoutPanel
Caption="{Binding nameList}"
AllowHide ="False" AllowFloat="False"
GotFocus="panel_GotFocus" >
<TextBox Text="Hello" />
</dxd:LayoutPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
使用此代碼,Caption {Binding nameList}爲空。
我試過這個。
<ListBox x:Name="_list" >
<ListBox.ItemTemplate>
<DataTemplate>
<Grid>
<TextBox Text="{Binding nameList}" />
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
在這種情況下,TextBox中的文本是正確的,我需要使用第一個代碼。
你至少應該提到你在這裏使用的DevExpress。 –