Exemplo n.º 1
0
        public FilterListModel(IDBusExportable parent) : base(parent)
        {
            var selection = new SelectAllSelection();

            selection.SelectAll();
            Selection = selection;
        }
Exemplo n.º 2
0
        public FilterListModel(DatabaseTrackListModel trackModel) : base()
        {
            browsing_model = trackModel;

            selection = new SelectAllSelection();
            selection.SelectAll();

            Selection.Changed += HandleSelectionChanged;
        }
Exemplo n.º 3
0
        public FilterListModel(DatabaseTrackListModel trackModel) : base()
        {
            browsing_model = trackModel;

            var selection = new SelectAllSelection();

            selection.SelectAll();
            Selection = selection;
        }
Exemplo n.º 4
0
 public AlbumListModel(IDBusExportable parent) : base(parent)
 {
     selection = new SelectAllSelection();
     selection.SelectAll();
 }
Exemplo n.º 5
0
 public AlbumListModel() : base()
 {
     selection = new SelectAllSelection();
     selection.SelectAll();
 }
Exemplo n.º 6
0
 public ArtistListModel(IDBusExportable parent) : base(parent)
 {
     Selection = new SelectAllSelection();
     Selection.SelectAll();
 }
Exemplo n.º 7
0
 public ArtistListModel() : base()
 {
     Selection = new SelectAllSelection();
     Selection.SelectAll();
 }