コード例 #1
0
        public FilterListModel(IDBusExportable parent) : base(parent)
        {
            var selection = new SelectAllSelection();

            selection.SelectAll();
            Selection = selection;
        }
コード例 #2
0
        public FilterListModel(DatabaseTrackListModel trackModel) : base()
        {
            browsing_model = trackModel;

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

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

            var selection = new SelectAllSelection();

            selection.SelectAll();
            Selection = selection;
        }
コード例 #4
0
 public AlbumListModel(IDBusExportable parent) : base(parent)
 {
     selection = new SelectAllSelection();
     selection.SelectAll();
 }
コード例 #5
0
 public AlbumListModel() : base()
 {
     selection = new SelectAllSelection();
     selection.SelectAll();
 }
コード例 #6
0
ファイル: ArtistListModel.cs プロジェクト: thoja21/banshee-1
 public ArtistListModel(IDBusExportable parent) : base(parent)
 {
     Selection = new SelectAllSelection();
     Selection.SelectAll();
 }
コード例 #7
0
ファイル: ArtistListModel.cs プロジェクト: thoja21/banshee-1
 public ArtistListModel() : base()
 {
     Selection = new SelectAllSelection();
     Selection.SelectAll();
 }