Gooroovster is a native Windows Phone 7 app for Google Music. If you're interested in beta testing Gooroovster send your Windows Live ID email address to [email protected].
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.IO.IsolatedStorage; | |
using System.Linq; | |
using System.Windows; | |
using System.Windows.Data; | |
using System.Windows.Media; | |
using Caliburn.Micro; | |
using Telerik.Windows.Controls; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system.web> | |
<customErrors mode="Off"/> | |
<authentication mode="Forms"/> | |
<compilation debug="true" targetFramework="4.0"/> | |
<httpModules> | |
<add name="DomainServiceModule" | |
type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> | |
</httpModules> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.IO.IsolatedStorage; | |
using Gmp.Core.Model; | |
namespace Gmp.Core | |
{ | |
public class Helper | |
{ | |
private static readonly IsolatedStorageSettings Settings = IsolatedStorageSettings.ApplicationSettings; | |
public static AppSettings GetAppSettings() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class MutexedIsoStorageFile | |
{ | |
public static T Read<T>(string fileName, string mutexName) where T : new() | |
{ | |
var mutexFile = new Mutex(false, mutexName); | |
var model = new T(); | |
mutexFile.WaitOne(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void ApplyItemTemplate(ItemsControl itemsControl, PropertyInfo property) { | |
if (!string.IsNullOrEmpty(itemsControl.DisplayMemberPath) | |
|| HasBinding(itemsControl, ItemsControl.DisplayMemberPathProperty) | |
|| itemsControl.ItemTemplate != null | |
|| !property.PropertyType.IsGenericType) { | |
return; | |
} | |
#if !WP71 | |
var itemType = property.PropertyType.GetGenericArguments().First(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.3 | |
This release includes the following changes: | |
- Fixed a problem with shuffling. | |
- Added Genres. | |
- Fixed a problem with skip back not working. | |
- Put agent status on now playing page. | |
- Removed stop button. | |
- Added navigation when tapping on artist/album in now playing. | |
- Show no_album_art cover until agent reports what song is being started. | |
- Added prompt to verify refresh all in case of accidental tap. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Windows; | |
using Microsoft.Advertising.Mobile.UI; | |
namespace Gmp.App.Framework.Controls | |
{ | |
public class AdControlEx : AdControl | |
{ | |
//MyApplicaitonId | |
public const string MyApplicationIdPropertyName = "MyApplicationId"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.4 | |
This release includes the following changes: | |
- New tiles. | |
- Added artist art background to now playing page. | |
- Added application live tile. | |
- Added more detail to refresh process. | |
- Added FirstRun and FirstRunAfterUpdate logic. | |
- Improved performance in refresh process. | |
- Un-pause resumes correctly. | |
- Added rewind and fast forward. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Other Thoughts: Ordered this motherboard and received it with bent pins, so I RMA'd. Thanks to the Thanksgiving holiday, the replacement board took a while to get to my address. However, once it arrived, no pins were bent and setup went flawlessly. | |
Cons: Okay so I bought this motherboard for my new rig that I was building and after installing everything onto the motherboard, I had issues powering it up. It started up fine until I did a clean shutdown of the system and after that, power would not boot. I've bought and changed the PSU three times and I still had the same problem. I installed all my parts to a different motherboard and it works like a charm. I know that the motherboard I bought here was damaged somehow. It's probably just my motherboard that I purchased but $200.00 for a motherboard that doesn't even work, I want a replacement for one that works or my money back! | |
Cons: Got a bad one my first go around so once I built the computer I found out there was a problem with CPU connection on the mothe |
OlderNewer