2013年9月5日

Windows Phone 7 程序等待页面的处理

摘要: 程序启动通常会有一个等待的过程,在这个过程中可以通过使用Popup控件配合BackgroundWorker类启动后台线程来实现。控件的代码PopupSplash.xaml 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.Win... 阅读全文

posted @ 2013-09-05 17:12 Hai_阔天空 阅读(251) 评论(0) 推荐(0)

Windows Phone 7 检查手机网络

摘要: 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.Ph 阅读全文

posted @ 2013-09-05 17:09 Hai_阔天空 阅读(222) 评论(0) 推荐(0)

c# 给button添加不规则的图片以及用pictureBox替代button响应点击事件

摘要: 1.Flat button用这个方法,前提是要把button的type设置为Flatbutton1.TabStop = false;button1.FlatAppearance.BorderSize = 0;button1.FlatAppearance.BorderColor = Color.FromArgb(0, 255, 255, 255); //设置边框的颜色Transparentbutton1.FlatAppearance.MouseOverBackColor = Color.FromArgb(0, 255, 255, 255); //设置鼠标经过时候的背景颜色Transparentb 阅读全文

posted @ 2013-09-05 12:05 Hai_阔天空 阅读(1820) 评论(1) 推荐(0)

导航