Trong bài giảng Lập trình Windows Phone (Module 4) bài 6 này, chúng ta sẽ cùng tìm hiểu về MediaLibrary API. Trong bài giảng sẽ trình bày các nội dung cụ thể như sau: Giới thiệu MediaLibrary API, contructors, properties, methods, đọc thông tin từ SD Card. Mời các bạn tham khảo. | Lập trình Windows Phone Module 4 – Bài 6: MediaLibrary API GV Biên soạn: Trần Duy Thanh Tác giả: Trần Duy Thanh 1 Nội dung Giới thiệu MediaLibrary API Contructors Properties Methods Đọc thông tin từ SD Card 2 1. Giới thiệu MediaLibrary API MediaLibrary cung cấp hàng loạt các Properties để trả về tập các Media chẳng hạn như: Albums, Artists, Genres, Pictures, Playlists, và Songs. Một một Properties trả về một tập các object có thể theo dạng enumerated và indexed. Đồng thời nó cũng cung cấp phương thức lưu trữ Media vào thiết bị. Bởi vì MediaLibrary được implement từ interface IDisposable nên khi sử dụng thư viện này ta nên để trong using block. 3 2. Contructors Constructor Mô tả MediaLibrary () Khởi tạo đối tượng MediaLibrary MediaLibrary (MediaSource) Khởi tạo đối tượng MediaLibrary, sử dụng MediaSource để tạo mới MediaLibrary 4 2. Contructors ICollection mediaSources =(); foreach (MediaSource source in mediaSources) { MediaLibrary ml = new MediaLibrary(source); // } 5 3. Properties Albums:Lấy về AlbumCollection, collection này chứa toàn bộ Albums trong media Library. using (MediaLibrary library = new MediaLibrary()) { AlbumCollection albums= ; foreach (Album album in albums) { ; ; ; } } 6 3. Properties Artists: Lấy về ArtistCollection, collection này chứa toàn bộ artists trong media Library using (MediaLibrary library = new MediaLibrary()) { ArtistCollection artists= ; foreach (Artist artist in artists) { ; ; ; } } 7 3. Properties Genres: Lấy về GenreCollection, collection này chứa toàn bộ genres (thể loại) trong media Library using (MediaLibrary library = new MediaLibrary()) { GenreCollection genressed= ; foreach (Genre genres in genressed) { ; ; ; } } 8 3. Properties MediaSource: Lấy về MediaSource mà được gán vào cho MediaLibrary khi ta khởi tạo . | Lập trình Windows Phone Module 4 – Bài 6: MediaLibrary API GV Biên soạn: Trần Duy Thanh Tác giả: Trần Duy Thanh 1 Nội dung Giới thiệu MediaLibrary API Contructors Properties Methods Đọc thông tin từ SD Card 2 1. Giới thiệu MediaLibrary API MediaLibrary cung cấp hàng loạt các Properties để trả về tập các Media chẳng hạn như: Albums, Artists, Genres, Pictures, Playlists, và Songs. Một một Properties trả về một tập các object có thể theo dạng enumerated và indexed. Đồng thời nó cũng cung cấp phương thức lưu trữ Media vào thiết bị. Bởi vì MediaLibrary được implement từ interface IDisposable nên khi sử dụng thư viện này ta nên để trong using block. 3 2. Contructors Constructor Mô tả MediaLibrary () Khởi tạo đối tượng MediaLibrary MediaLibrary (MediaSource) Khởi tạo đối tượng MediaLibrary, sử dụng MediaSource để tạo mới MediaLibrary 4 2. Contructors ICollection mediaSources =(); foreach (MediaSource source in mediaSources) { MediaLibrary ml =