2008-12-22 60 views

回答

1

有一個名爲MSNP-Sharp的開源項目,你應該看看。

您可以使用它連接到MSN並設置您的個人資料圖片。以下是設置圖像的示例:

 try 
     { 
      Image fileImage = Image.FromFile(ConfigurationSettings.AppSettings["ImageFileName"]); 
      DisplayImage displayImage = new DisplayImage(); 
      displayImage.Image = fileImage; 
      m_Messenger.Owner.DisplayImage = displayImage; 
      m_Messenger.Nameserver.StorageService.UpdateProfile(fileImage, "MyPhoto"); 
     } 
     catch 
     { 
      LogError(new StackTrace(true), "Error adding avatar image."); 
     } 
相關問題