本文整理汇总了C#中Contact.GetInstantMessageAccounts方法的典型用法代码示例。如果您正苦于以下问题:C# Contact.GetInstantMessageAccounts方法的具体用法?C# Contact.GetInstantMessageAccounts怎么用?C# Contact.GetInstantMessageAccounts使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Contact
的用法示例。
在下文中一共展示了Contact.GetInstantMessageAccounts方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DisplayContactDetails
public void DisplayContactDetails(Contact c)
{
bool addBlank = false;
ClearContactDetails();
if(c != null)
{
Pixbuf cPhoto = GetScaledPhoto(c, 64);
if(cPhoto != null)
AddPicture(cPhoto);
else
AddPicture(BlankHeadPixBuf);
if(c.FN != null)
{
AddTitles(c.FN, c.Title, null);
}
else
{
AddTitles(c.UserName, c.Title, null);
}
foreach(Telephone phone in c.GetTelephoneNumbers())
{
addBlank = true;
if((phone.Types & PhoneTypes.home) == PhoneTypes.home)
{
AddLabeledValue("home", phone.Number);
}
if((phone.Types & PhoneTypes.work) == PhoneTypes.work)
{
AddLabeledValue("work", phone.Number);
}
if((phone.Types & PhoneTypes.other) == PhoneTypes.other)
{
AddLabeledValue("other", phone.Number);
}
if((phone.Types & PhoneTypes.cell) == PhoneTypes.cell)
{
AddLabeledValue("mobile", phone.Number);
}
if((phone.Types & PhoneTypes.pager) == PhoneTypes.pager)
{
AddLabeledValue("pager", phone.Number);
}
if((phone.Types & PhoneTypes.fax) == PhoneTypes.fax)
{
AddLabeledValue("fax", phone.Number);
}
}
if(addBlank)
{
AddLabeledValue(null, null);
addBlank = false;
}
foreach(Email e in c.GetEmailAddresses())
{
addBlank = true;
if((e.Types & EmailTypes.personal) == EmailTypes.personal)
{
AddLabeledValue("home", e.Address);
}
if((e.Types & EmailTypes.work) == EmailTypes.work)
{
AddLabeledValue("work", e.Address);
}
if((e.Types & EmailTypes.other) == EmailTypes.other)
{
AddLabeledValue("other", e.Address);
}
}
if(addBlank)
{
AddLabeledValue(null, null);
addBlank = false;
}
foreach(IM im in c.GetInstantMessageAccounts())
{
addBlank = true;
if((im.Types & IMTypes.home) == IMTypes.home)
{
AddLabeledValue("home",
im.Address + " (" + im.Provider + ")");
}
if((im.Types & IMTypes.work) == IMTypes.work)
{
AddLabeledValue("work",
im.Address + " (" + im.Provider + ")");
}
if((im.Types & IMTypes.other) == IMTypes.other)
{
AddLabeledValue("other",
im.Address + " (" + im.Provider + ")");
}
}
if(addBlank)
{
AddLabeledValue(null, null);
addBlank = false;
}
foreach(Address addr in c.GetAddresses())
{
string addressLine = "";
//.........这里部分代码省略.........