1

プログラムで Windows Live Messenger (現在 8.5.1302.1018 を使用) の表示画像を設定する方法を教えてください。考えられる解決策は、C++、.NET、または VB です。ヒントだけでも役に立ちます。

4

1 に答える 1

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.");
        }
于 2009-03-03T00:24:11.217 に答える