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.Controls;
us Read More
引入命名空间:Using Microsoft.Phone.Tasks;代码段: void cameraCaptureTask_Completed(object sender, PhotoResult e) { BitmapImage bmp = new BitmapImage(); bmp.SetSource(e.ChosenPhoto);//获取返回的图片 image1.Source = bmp; } private void button1_Click(o... Read More
在Blend中右击ListView控件,从样式和模板相关的菜单项中,我们没找到与列表头有关的项。然后,我们到属性面板中找GridView的ColumnHeaderContainerStyle属性,结果你发现,就算你在高级选项菜单中把它转换为本地资源,你会发现它没有反应,切换到XAML视图也没看到生成的代码。那是不是没办法了呢?这个问题我想了想,是不是只能手写XAML呢? 其实是要手动写一点代码,但可以借助Blend的设计器来使用。 怎么操作呢? 切换到XAML视图,在Window的资源中增加一个样式,类型指向GridViewColumnHeader的样式:<Style TargetTyp Read More