Example #1
0
        public FilterListModel(IDBusExportable parent) : base(parent)
        {
            var selection = new SelectAllSelection();

            selection.SelectAll();
            Selection = selection;
        }
        public FilterListModel(DatabaseTrackListModel trackModel) : base()
        {
            browsing_model = trackModel;

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

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

            var selection = new SelectAllSelection();

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