2

リストビューにコレクションを表示しています。各リストビューアイテムには、関連するpdfをダウンロードするための独自のボタンがあります。

ボタンをクリックして、その場所に不確定なプログレスバーを表示したい。

サンプルプロジェクトでは、ボタンをクリックしたときにアイテムのダウンロードステータスを反転しようとしているだけです。

私のビューモデルコード:

private BindableCollection<IDownloadable> _downloadables;
public BindableCollection<IDownloadable> Downloadables
{
    get { return _downloadables; }
    set
    {
        _downloadables = value;
        NotifyOfPropertyChange(() => Downloadables);
    }
}

public void Download(IDownloadable item)
{
    item.Downloading = !item.Downloading;
    NotifyOfPropertyChange(() => Downloadables);
}

public ShellViewModel()
{
    Downloadables = new BindableCollection<IDownloadable>();

    Downloadables.Add(new DownloadString("String"));
    Downloadables.Add(new DownloadString("String"));
    Downloadables.Add(new DownloadString("String"));
}

私の見解:

<ListView Name="Downloadables"
          HorizontalAlignment="Stretch"
          VerticalAlignment="Stretch">
    <ListView.View>
        <GridView>
            <GridViewColumn>
                <GridViewColumn.CellTemplate>
                    <DataTemplate>
                        <Grid Background="White">
                            <ToggleButton Content="{Binding MyString}"
                                          Width="50"
                                          Height="50"
                                          HorizontalAlignment="Center"
                                          VerticalAlignment="Center" 
                                          cal:Message.Attach="Download($dataContext)"/>
                            <spark:SprocketControl Width="30"
                                                   Height="30"
                                                   HorizontalAlignment="Center"
                                                   VerticalAlignment="Center"
                                                   AlphaTicksPercentage="50"
                                                   Interval="60"
                                                   IsIndeterminate="True"
                                                   LowestAlpha="50"
                                                   StartAngle="-90"
                                                   TickColor="LawnGreen"
                                                   TickCount="12"
                                                   TickWidth="3" 
                                                   Visibility="{Binding Downloading, Converter={StaticResource BooleanToVisibilityConverter}}"/>
                        </Grid>

                    </DataTemplate>
                </GridViewColumn.CellTemplate>
            </GridViewColumn>
        </GridView>
    </ListView.View>
</ListView>

NotifyOfPropertyChangedがコレクションアイテムに更新を指示することを想像していましたが、そうではないようです。

4

1 に答える 1

4

コレクションとは関係ありません。テンプレートはアイテム自体にバインドされます。コレクションについてはわかりません。つまり、アイテム自体に通知 ( INotifyPropertyChanged )を実装する必要があります。

于 2012-05-25T17:07:12.503 に答える