2014-02-18 93 views
0

我找不到任何用於QuickBlox集成的好材料。我正在編寫地鐵應用程序和官方文檔。這是爲WP7編寫的,但也有一些地方我讀了它的等效於Windows 8. 以下是代碼和錯誤!QuickBlox集成導致異常

private const int AppID = 150; 
private const int OwnerID = 4331; 
private const string AuthKey = "8vXrOPEEXFacuEa"; 
private const string AuthSecret = "Up3AjdkjEDAzraL"; 

public QuickBloxSDK_Silverlight.QuickBlox QBlox 
{ get; set; } 

public MainPage() 
{ 
    // QBlox is receive null and cause for exception 
    this.QBlox = new QuickBloxSDK_Silverlight.QuickBlox(AppID, OwnerID, AuthKey, AuthSecret); 
    InitializeComponent(); 
} 

無法加載文件或程序集 'System.Windows,版本= 2.0.5.0,文化=中性公鑰= 7cec85d7bea7798e' 或WP7

回答