7

在我的应用程序中有我的自定义类的网格视图。我正在使用自定义数据模板,并且值是从 SQLite 绑定的。现在,当用户启动应用程序时,应在 gridview/listview 中预先选择某些项目(不是单个)。Gridview/listview 允许多选。如何使用 SelectedItem 属性实现此目的?

更新:我遵循了这个,它对我不起作用。返回 0 个选择。

更新2:我已经发布了代码

void MainPage_Loaded(object sender, RoutedEventArgs e)
{
    using (var db = new SQLite.SQLiteConnection(dbpath))
    {
        lvTags.ItemsSource = db.Table<Database.Tag>();  //lvTags is listview

        if (MyList.Count > 0) //MyList is the static list of class "Database.Tag"
        {
            foreach (var item in MyList)
                foreach (var lvitem in lvTags.Items)
                    if (lvitem.Equals(item))
                        lvTags.SelectedItems.Add(lvitem);
        }
    }
}

更新 3:

public override bool Equals(object obj)
{
    Tag tag = obj as Tag;
    if (this.TagID == tag.TagID && this.TagName == tag.TagName)
        return true;
    else
        return false;
}
4

4 回答 4

6

终于从MSDN得到答案。感谢ForInfo

XAML 页面

<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
    <ListView x:Name="listView" SelectionMode="Multiple">
        <ListView.ItemTemplate>
            <DataTemplate>
                <StackPanel Orientation="Horizontal">
                    <TextBox Text="{Binding ID}" Margin="0,0,5,0"/>
                    <TextBox Text="{Binding Title}"/>
                </StackPanel>
            </DataTemplate>
        </ListView.ItemTemplate>
    </ListView>
</Grid>

C#

public sealed partial class MainPage : Page
{
    public MainPage()
    {
        this.InitializeComponent();
        LoadData();
    }
    protected override void OnNavigatedTo(NavigationEventArgs e)
    {
    }
    ObservableCollection<KiwiItem> sourceColl;
    IList<KiwiItem> selectionList;
    public void LoadData()
    {
        var dbPath = Path.Combine(Windows.Storage.ApplicationData.Current.LocalFolder.Path, "db.sqlite");

        // Exec (1)
        using (var db = new SQLite.SQLiteConnection(dbPath))
        {
            db.DropTable<KiwiItem>();
            db.CreateTable<KiwiItem>();
            db.RunInTransaction(() =>
            {
                db.Insert(new KiwiItem() { ID = 1, Title = "MyTitle1" });
                db.Insert(new KiwiItem() { ID = 2, Title = "MyTitle2" });
                db.Insert(new KiwiItem() { ID = 3, Title = "MyTitle3" });
                db.Insert(new KiwiItem() { ID = 4, Title = "MyTitle4" });
            });
            this.sourceColl = new ObservableCollection<KiwiItem>();
            this.selectionList = new List<KiwiItem>();
            // Query the db. In practice, fill the sourceColl according to your business scenario
            foreach (KiwiItem item in db.Table<KiwiItem>())
            {
                this.sourceColl.Add(item);
                if (item.ID == 2 || item.ID == 4)
                    this.selectionList.Add(item);
            }
        }

        // Exec (2)
        this.listView.ItemsSource = this.sourceColl;
        foreach (KiwiItem item in this.selectionList)
            this.listView.SelectedItems.Add(item);
    }
}
public class KiwiItem
{
    [SQLite.AutoIncrement, SQLite.PrimaryKey]
    public int ID { get; set; }
    public string Title { get; set; }
}
于 2012-10-16T07:22:26.403 回答
2

您可以使用 SelectedItems 属性。

    //
    // Summary:
    //     Gets the currently selected items.
    //
    // Returns:
    //     A collection of the currently selected items.
    public IList<object> SelectedItems { get; }
于 2012-10-04T07:13:01.157 回答
2

您可以使用 SelectedItems 属性并调用 SelectedItems.Add() 或 SelectedItems.Remove() 从选择中添加/删除项目。

如果在 GridView 上使用 ItemsSource 绑定,则可以使用 WinRT XAML 工具包中的ListViewExtensions.BindableSelection附加属性(它也应该与 GridView 一起使用,因为它是 ListViewBase 的子类),如示例页面中所示。

于 2012-10-04T16:42:19.383 回答
-1

我删除了我原来的答案,因为你没有使用数据绑定,我的答案对你没有用。

我刚刚发现这可能对您有用:

“SelectedItems 属性是只读的,不能直接设置”

因此,有关可能提供帮助的解决方案,请参阅本文

于 2012-10-04T07:34:53.953 回答