zoukankan
html css js c++ java
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.Phone.Controls; using System.Net.NetworkInformation; using Microsoft.Phone.Net.NetworkInformation; namespace checknet { public partial class MainPage : PhoneApplicationPage { private bool networkIsAvailable; private NetworkInterfaceType _currentNetworkType; //网络连接的类型 public MainPage() { InitializeComponent(); } private void button1_Click(object sender, RoutedEventArgs e) { networkIsAvailable = Microsoft.Phone.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable();//当前网络是否可用 _currentNetworkType = Microsoft.Phone.Net.NetworkInformation.NetworkInterface.NetworkInterfaceType;//获取当前网络的类型 if (networkIsAvailable) { Message.Text = "联网状态"; Message.Background = new SolidColorBrush(Colors.Green); } else { Message.Text = "断网状态"; Message.Background = new SolidColorBrush(Colors.Red); } switch (_currentNetworkType) { case NetworkInterfaceType.MobileBroadbandCdma: netname.Text = "Cdma网络"; break; case NetworkInterfaceType.MobileBroadbandGsm: netname.Text = "Csm网络"; break; case NetworkInterfaceType.Wireless80211: netname.Text = "Wireless网络"; break; case NetworkInterfaceType.Ethernet: netname.Text = "Ethernet网络"; break; case NetworkInterfaceType.None: netname.Text = "网络不可用"; break; default: netname.Text = "其他的网络"; break; } } } }
查看全文
相关阅读:
产品蔟的创建--抽象工厂模式
产品蔟的创建--抽象工厂模式
ASP.NET MVC5+EF6+EasyUI 后台管理系统--工作流演示截图
ASP.NET MVC5+EF6+EasyUI 后台管理系统--工作流演示截图
ASP.NET MVC5+EF6+EasyUI 后台管理系统--工作流演示截图
ASP.NET MVC5+EF6+EasyUI 后台管理系统--工作流演示截图
一个网站SQL注入的案例
一个网站SQL注入的案例
干什么挣钱快,2个冷门项目让你迅速发家致富
获取 pool的并发数和Pool下成员的并发数
原文地址:https://www.cnblogs.com/javawebsoa/p/2458110.html
最新文章
C# 自定义事件(EventArgs)
C# 自定义事件(EventArgs)
C# 自定义事件(EventArgs)
C# 自定义事件(EventArgs)
“Too many texture interpolators would be used for ForwardBase pass”
“Too many texture interpolators would be used for ForwardBase pass”
“Too many texture interpolators would be used for ForwardBase pass”
“Too many texture interpolators would be used for ForwardBase pass”
Python爬虫入门教程 27-100 微医挂号网专家团队数据抓取pyspider
在农村干什么挣钱,小加工让你快速致富
热门文章
现在做什么生意挣钱快投资小
农村挣钱好项目,特色产品让你更有竞争力
可以赚钱的游戏,这么多游戏供您选择
想在家挣钱,这几个项目可以让你月入过万
马云告诉你在农村做什么赚钱
在家无聊怎样能挣钱,手工制品可以让你发大财
在小县城夜市卖什么赚钱
在家做什么挣钱,50个赚钱的热门项目分享
产品蔟的创建--抽象工厂模式
产品蔟的创建--抽象工厂模式
Copyright © 2011-2022 走看看