2014-01-21 79 views
0

我想綁定列表框中的用戶控件,但它似乎我做錯了什麼,雖然我遵循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」。用戶控件添加到列表框中,但不顯示文本。

+0

當您添加轉換器時,您的值不爲空? – MatDev8

+0

對不起,我沒有得到它,我沒有使用轉換器。 (顯示114個項目並且綁定值永遠不爲空) – ARH

+0

如果您編寫任何內容而不是綁定。例如「toto」?什麼是追加? – MatDev8

回答

0

最後,我想出了以下解決方案。

public static readonly DependencyProperty TextProperty = 
DependencyProperty.Register(
    "Text", 
    typeof(string), 
    typeof(SuraWithProgressBar), 
    new PropertyMetadata(null)); 

我將「文本」更改爲「SuraTName」,它的工作原理!

0

轉換器是用於調試結合問題是好事=>

public sealed class DebugConverter : IValueConverter 
{ 
    public object Convert(object value, Type targetType, object parameter, string language) 
    { 
     return value; 
    } 

    public object ConvertBack(object value, Type targetType, object parameter, string language) 
    { 
     return value; 
    } 
} 
+0

謝謝,在轉換器中,我可以在調試時看到值。它返回值,但沒有任何內容顯示在文本塊中。 – ARH

相關問題