与众不同 windows phone (26) - Contacts and Calendar(联系人和日历)
原文:与众不同 windows phone (26) - Contacts and Calendar(联系人和日历)
作者:webabcd
介绍
与众不同 windows phone 7.5 (sdk 7.1) 之联系人和日历
- 获取联系人相关数据
- 获取日历相关数据
示例
1、演示如何获取联系人相关数据
ContactPictureConverter.cs
using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes; using Microsoft.Phone.UserData;
using System.IO;
using Microsoft.Phone; namespace Demo.ContactsAndCalendar
{
public class ContactPictureConverter : System.Windows.Data.IValueConverter
{
// 提取 Contact 中的图片,将图片转换成 WriteableBitmap 类型对象并返回
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
Contact contact = value as Contact;
if (contact == null)
return null; // 将联系人图片转换成 WriteableBitmap 类型的对象,并返回此对象
Stream imageStream = contact.GetPicture();
if (imageStream != null)
return PictureDecoder.DecodeJpeg(imageStream); return null;
} public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
}
}
ContactsDemo.xaml
<phone:PhoneApplicationPage
x:Class="Demo.ContactsAndCalendar.ContactsDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
mc:Ignorable="d" d:DesignHeight="768" d:DesignWidth="480"
shell:SystemTray.IsVisible="True" xmlns:converter="clr-namespace:Demo.ContactsAndCalendar"> <phone:PhoneApplicationPage.Resources>
<converter:ContactPictureConverter x:Key="ContactPictureConverter" />
</phone:PhoneApplicationPage.Resources> <Grid x:Name="LayoutRoot" Background="Transparent">
<StackPanel Orientation="Vertical"> <TextBlock Name="lblMsg" /> <Button Name="btnGetData" Content="获取联系人相关数据" Click="btnGetData_Click" /> <!--用于绑定设备中的全部联系人信息,并显示联系人的第一个 email 地址和第一个电话号码-->
<ListBox Name="listBoxContacts" ItemsSource="{Binding}" Height="200" Margin="0,15,0,0" >
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Path=EmailAddresses[0].EmailAddress, Mode=OneWay}" />
<TextBlock Text="{Binding Path=PhoneNumbers[0].PhoneNumber, Mode=OneWay}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox> <!--用于绑定设备中联系人 email 地址带“hotmail”的联系人数据,并显示联系人的图片及联系人的名称-->
<ListBox Name="listBoxContactsWithHotmail" ItemsSource="{Binding}" Height="200" Margin="0,15,0,0">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Border BorderThickness="2" HorizontalAlignment="Left" BorderBrush="{StaticResource PhoneAccentBrush}" >
<Image Source="{Binding Converter={StaticResource ContactPictureConverter}}" Width="48" Height="48" Stretch="Fill" />
</Border>
<TextBlock Text="{Binding Path=DisplayName, Mode=OneWay}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox> </StackPanel>
</Grid> </phone:PhoneApplicationPage>
ContactsDemo.xaml.cs
/*
* 演示如何获取设备中的联系人数据
*
* Contacts - 用于获取联系人数据的类
* Accounts - 联系人数据可能来自用户的不同帐户,Accounts 就是用来获取这个不同账户的,即数据源集合(只读属性,返回 Account 对象的集合)
* SearchAsync(string filter, FilterKind filterKind, object state) - 开始异步搜索联系人数据
* string filter - 筛选关键字
* 当 filterKind 设置为 DisplayName, EmailAddress, PhoneNumber 时指定筛选关键字
* 当 filterKind 设置为 None, PinnedToStart 时此值无用,直接写 String.Empty 就好
* FilterKind filterKind - 筛选器的类别(Microsoft.Phone.UserData.FilterKind 枚举)
* FilterKind.None - 返回全部联系人数据
* FilterKind.PinnedToStart - 返回已固定到开始屏幕的联系人数据
* FilterKind.DisplayName - 按名称搜索
* FilterKind.EmailAddress - 按 email 地址搜索
* FilterKind.PhoneNumber - 按电话号码搜索
* object state - 异步过程中的上下文
* SearchCompleted - 搜索完成时所触发的事件(事件参数 ContactsSearchEventArgs)
*
* ContactsSearchEventArgs
* Filter - 筛选关键字
* FilterKind - 筛选器的类别
* Results - 返回搜索结果,Contact 对象的集合
* State - 异步过程中的上下文
*
* Contact - 联系人
* Accounts - 与此联系人关联的数据源集合
* Addresses - 与此联系人关联的地址数据集合
* Birthdays - 与此联系人关联的生日数据集合
* Children - 子女
* Companies - 公司
* CompleteName - 联系人全称(包含诸如名字、职称和昵称之类的信息)
* DisplayName - 显示名称
* EmailAddresses - email 地址
* IsPinnedToStart - 是否固定到了开始屏幕
* Notes - 备注
* PhoneNumbers - 电话号码
* SignificantOthers - 与此联系人关联的重要他人
* Websites - 网站
*
* Account - 账户
* Name - 账户名称
* Kind - 账户的种类(Microsoft.Phone.UserData.StorageKind 枚举)
* Phone, WindowsLive, Outlook, Facebook, Other
*/ using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls; using Microsoft.Phone.UserData; namespace Demo.ContactsAndCalendar
{
public partial class ContactsDemo : PhoneApplicationPage
{
public ContactsDemo()
{
InitializeComponent();
} private void btnGetData_Click(object sender, RoutedEventArgs e)
{
// 实例化 Contacts,注册相关事件
Contacts contacts = new Contacts();
contacts.SearchCompleted += new EventHandler<ContactsSearchEventArgs>(contacts_SearchCompleted); // 指定搜索内容及搜索方式,开始异步搜索联系人信息
contacts.SearchAsync(String.Empty, FilterKind.None, null); lblMsg.Text = "数据加载中,请稍后。。。";
btnGetData.IsEnabled = false;
} void contacts_SearchCompleted(object sender, ContactsSearchEventArgs e)
{
try
{
// 绑定联系人数据
listBoxContacts.DataContext = e.Results; // 绑定联系人 email 地址带“hotmail”的联系人数据
var hotmailContacts = from c in e.Results
from ContactEmailAddress a in c.EmailAddresses
where a.EmailAddress.Contains("hotmail")
select c;
listBoxContactsWithHotmail.DataContext = hotmailContacts;
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
} this.Dispatcher.BeginInvoke(delegate
{
lblMsg.Text = "数据加载完毕,共有联系人数据 " + e.Results.Count().ToString() + " 条";
btnGetData.IsEnabled = true;
});
}
}
}
2、演示如何获取日历相关数据
CalendarDemo.xaml
<phone:PhoneApplicationPage
x:Class="Demo.ContactsAndCalendar.CalendarDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Portrait" Orientation="Portrait"
mc:Ignorable="d" d:DesignHeight="768" d:DesignWidth="480"
shell:SystemTray.IsVisible="True"> <Grid x:Name="LayoutRoot" Background="Transparent">
<StackPanel Height="Auto" Width="Auto" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" > <TextBlock Name="lblMsg" /> <Button Name="btnGetData" Content="获取日历相关数据" Click="btnGetData_Click" /> <!--用于绑定日历数据,并显示约会主题-->
<ListBox Name="listBoxCalendar" ItemsSource="{Binding}" Height="200" Margin="0,15,0,0" >
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=Subject, Mode=OneWay}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox> <!--用于绑定日历数据(只绑定主日历数据),并显示约会主题-->
<ListBox Name="listBoxCalendarPrimary" ItemsSource="{Binding}" Height="200" Margin="0,15,0,0" >
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path=Subject, Mode=OneWay}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox> </StackPanel>
</Grid> </phone:PhoneApplicationPage>
CalendarDemo.xaml.cs
/*
* 演示如何获取设备中的日历数据
*
* Appointments - 用于获取日历约会数据的类
* Accounts - 日历约会数据可能来自用户的不同帐户,Accounts 就是用来获取这个不同账户的,即数据源集合(只读属性,返回 Account 对象的集合)
* SearchAsync(DateTime startTimeInclusive, DateTime endTimeInclusive, int maximumItems, Account account, Object state) - 开始异步搜索日历约会数据
* startTimeInclusive - 指定搜索范围:开始时间
* endTimeInclusive - 指定搜索范围:结束时间
* maximumItems - 指定返回约会数据的最大数量
* account - 指定约会数据的来源账户(不指定的话则全账户搜索)
* state - 异步过程中的上下文
* SearchCompleted - 搜索完成时所触发的事件(事件参数 AppointmentsSearchEventArgs)
*
* AppointmentsSearchEventArgs
* StartTimeInclusive - 搜索范围的开始时间
* EndTimeInclusive - 搜索范围的结束时间
* Results - 返回搜索结果,Appointment 对象的集合
* State - 异步过程中的上下文
*
* Appointment - 约会
* Account - 与此约会关联的数据源
* Attendees - 与此约会关联的参与者
* Details - 详细说明
* StartTime - 约会的开始时间
* EndTime - 约会的结束时间
* IsAllDayEvent - 约会是否来自附加日历
* IsPrivate - 是否是私人约会
* Location - 约会的地点
* Organizer - 约会的组织者
* Status - 如何处理此约会(Microsoft.Phone.UserData.AppointmentStatus 枚举)
* Free - 空闲
* Tentative - 待定
* Busy - 忙碌
* OutOfOffice - 外出
* Subject - 约会的主题
*/ using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls; using Microsoft.Phone.UserData; namespace Demo.ContactsAndCalendar
{
public partial class CalendarDemo : PhoneApplicationPage
{
public CalendarDemo()
{
InitializeComponent();
} private void btnGetData_Click(object sender, RoutedEventArgs e)
{
// 实例化 Appointments,并注册相关事件
Appointments appointments = new Appointments();
appointments.SearchCompleted += new EventHandler<AppointmentsSearchEventArgs>(appointments_SearchCompleted); DateTime start = DateTime.Now;
DateTime end = start.AddDays();
int max = ; // 指定搜索范围,开始异步搜索日历数据
appointments.SearchAsync(start, end, max, null); lblMsg.Text = "数据加载中,请稍后。。。";
btnGetData.IsEnabled = false;
} void appointments_SearchCompleted(object sender, AppointmentsSearchEventArgs e)
{
try
{
// 绑定所有日历的数据
listBoxCalendar.DataContext = e.Results; // 只绑定主日历数据,其他附加日历的数据都过滤掉
var primaryCalendar = from Appointment a in e.Results
where a.IsAllDayEvent == false
select a;
listBoxCalendarPrimary.DataContext = primaryCalendar;
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
} this.Dispatcher.BeginInvoke(delegate
{
btnGetData.IsEnabled = true;
lblMsg.Text = "数据加载完毕";
});
}
}
}
OK
[源码下载]
与众不同 windows phone (26) - Contacts and Calendar(联系人和日历)的更多相关文章
- 与众不同 windows phone (39) - 8.0 联系人和日历
[源码下载] 与众不同 windows phone (39) - 8.0 联系人和日历 作者:webabcd 介绍与众不同 windows phone 8.0 之 联系人和日历 自定义联系人存储的增删 ...
- 与众不同 windows phone (43) - 8.0 相机和照片: 镜头的可扩展性, 图片的可扩展性, 图片的自动上传扩展
[源码下载] 与众不同 windows phone (43) - 8.0 相机和照片: 镜头的可扩展性, 图片的可扩展性, 图片的自动上传扩展 作者:webabcd 介绍与众不同 windows ph ...
- 与众不同 windows phone (3) - Application Bar(应用程序栏)
原文:与众不同 windows phone (3) - Application Bar(应用程序栏) [索引页][源码下载] 与众不同 windows phone (3) - Application ...
- 背水一战 Windows 10 (26) - XAML: x:DeferLoadStrategy, x:Null
[源码下载] 背水一战 Windows 10 (26) - XAML: x:DeferLoadStrategy, x:Null 作者:webabcd 介绍背水一战 Windows 10 之 XAML ...
- 与众不同 windows phone 8.0 & 8.1 系列文章索引
[源码下载] [与众不同 windows phone 7.5 (sdk 7.1) 系列文章索引] 与众不同 windows phone 8.0 & 8.1 系列文章索引 作者:webabcd ...
- 与众不同 windows phone (34) - 8.0 新的控件: LongListSelector
[源码下载] 与众不同 windows phone (34) - 8.0 新的控件: LongListSelector 作者:webabcd 介绍与众不同 windows phone 8.0 之 新的 ...
- 与众不同 windows phone (35) - 8.0 新的启动器: ShareMediaTask, SaveAppointmentTask, MapsTask, MapsDirectionsTask, MapDownloaderTask
[源码下载] 与众不同 windows phone (35) - 8.0 新的启动器: ShareMediaTask, SaveAppointmentTask, MapsTask, MapsDirec ...
- 与众不同 windows phone (36) - 8.0 新的瓷贴: FlipTile, CycleTile, IconicTile
[源码下载] 与众不同 windows phone (36) - 8.0 新的瓷贴: FlipTile, CycleTile, IconicTile 作者:webabcd 介绍与众不同 windows ...
- 与众不同 windows phone (37) - 8.0 文件系统: StorageFolder, StorageFile, 通过 Uri 引用文件, 获取 SD 卡中的文件
[源码下载] 与众不同 windows phone (37) - 8.0 文件系统: StorageFolder, StorageFile, 通过 Uri 引用文件, 获取 SD 卡中的文件 作者:w ...
随机推荐
- HDOJ 3047 带权并查集
解题思路转自: http://blog.csdn.net/azheng51714/article/details/8500459 http://blog.csdn.net/acresume/artic ...
- [置顶] 编程模仿boost::function和boost::bind
boost::function和boost::bind结合使用是非常强大的,他可以将成员函数和非成员函数绑定对一个对象上,实现了类似C#的委托机制.委托在许多时候可以替代C++里面的继承,实现对象解耦 ...
- 解决linux下javac -version和java -version版本显示不一致
解决linux下javac -version和java -version版本显示不一致 [javascript] view plaincopy [root@localhost usr]# $JAVA_ ...
- Win32 Windows编程 十二
一.对话框 1.对话框的分类 2.对话框的基本使用方式 3.对话框资源 4.有模式对话框的使用 5. 无模式对话框的使用 5.1 加入对话框资源 5.2 定义窗体处理函数 BOOL CALLBACK ...
- on、where、having的区别(转载)
on.where.having的区别 on.where.having这三个都可以加条件的子句中,on是最先执行,where次之,having最后.有时候如果这先后顺序不影响中间结果的话,那最终结果是相 ...
- POJ - 1185 炮兵阵地 (状态压缩)
题目大意:中文题目就不多说大意了 解题思路: 1.每行最多仅仅有十个位置,且不是山地就是平原,那么就能够用1表示山地,0表示平原,将每一行的状态进行压缩了 2.接着找出每行能放炮兵的状态.先不考虑其它 ...
- jQuery Validation让验证变得如此easy(一)
一.官网下载jquery,和jquery validation plugin http://jqueryvalidation.org/ 二.引入文件 <script src="js/j ...
- 08-使用for循环输出杨辉三角(循环)
/** * 使用循环输出杨辉三角 * * */ public class Test6 { public static void main(String[] args) { // 创建二维数组 int ...
- GreenDAO数据库版本升级
GreenDAO是一款非要流行的android平台上的数据库框架,性能优秀,代码简洁. 初始化数据库模型代码的时候需要使用java项目生成代码,依赖的jar包已经上传到我的资源里了,下载地址如下:ht ...
- cocos2d-x 精灵移动
在HelloWorldScene.h中声明 class HelloWorld : public cocos2d::CCLayer { public : ...... CCPoin ...