我想綁定列表框中的用戶控件,但它似乎我做錯了什麼,雖然我遵循How to bind data user control inside listbox WP8,但這無能爲力。如何綁定列表框中的數據用戶控件
這裏我在用戶控件
<Grid x:Name="LayoutRoot" Background="Transparent" >
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"></ColumnDefinition>
<ColumnDefinition Width="*"></ColumnDefinition>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Image Source="Images/download.png" Width="30" Height="30" VerticalAlignment="Top" Grid.Column="0"/>
<ProgressBar Grid.Row="0" Grid.Column="1" x:Name="prg" VerticalAlignment="Top" />
<TextBlock x:Name="TextBlock" Foreground="Black" Text="{Binding Text}" Grid.Row="0" Grid.Column="2" VerticalAlignment="Top" FontSize="20" HorizontalAlignment="Left" />
</Grid>
和代碼正在做落後於用戶控制
public static readonly DependencyProperty TextProperty =
DependencyProperty.Register(
"Text",
typeof(string),
typeof(SuraWithProgressBar),
new PropertyMetadata(null));
public string Text
{
get { return (string)GetValue(TextProperty); }
set { SetValue(TextProperty, value);}
}
的使用
<ListBox x:Name="lsbQuranData" Grid.Row="1" Foreground="Black" ScrollViewer.VerticalScrollBarVisibility="Visible">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<local:SuraWithProgressBar Text="{Binding SuraTName, ElementName=SuraWithProgressBar}"></local:SuraWithProgressBar>
<Line X1="0" X2="480" Y1="0" Y2="0" VerticalAlignment="Bottom" StrokeThickness="2" Stroke="Black" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
和代碼背後使用
lsbQuranData.ItemsSource = App.Chapter;
讓我來提一下,「App.Chapter」包含綁定到用戶控件的Text屬性的「SuraTName」。用戶控件添加到列表框中,但不顯示文本。
當您添加轉換器時,您的值不爲空? – MatDev8
對不起,我沒有得到它,我沒有使用轉換器。 (顯示114個項目並且綁定值永遠不爲空) – ARH
如果您編寫任何內容而不是綁定。例如「toto」?什麼是追加? – MatDev8