Changeset 178
- Timestamp:
- 03/10/07 11:41:08 (2 years ago)
- Files:
-
- dmp/trunk/client/wpfclient/main_window.xaml.cs (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
dmp/trunk/client/wpfclient/main_window.xaml.cs
r176 r178 261 261 newDT = datatableQueue.Dequeue(); 262 262 } 263 264 VLControl.ClearPlayList(); 263 Console.WriteLine("Changing data table"); 265 264 266 265 foreach(DataRow dr in newDT.Rows){ … … 268 267 string url = myBridge.getSongURL(songId); 269 268 VLControl.AddSongToPlaylist(songId, url, url); 269 Console.WriteLine("Adding song number {0} to playlist as {1}", songId, url); 270 270 } 271 271 … … 320 320 321 321 //VLControl.AddSongToPlaylist(songId, songURL, songURL); 322 Console.WriteLine("Playing song number {0} as {1}", songId, songURL); 322 323 VLControl.PlaySong(songId); 323 324 playingId = songId; 325 //VLControl.AddAndPlay(songURL, ""); 326 324 327 325 328 PlayButton.Template = (ControlTemplate)this.FindResource("PauseIcon");
