04 2013 档案
ComponentOne的分页控件C1DataPager
只有注册用户登录后才能阅读该文。
posted @ 2013-04-24 16:14 非“程”勿扰 阅读(157) 评论(1) 推荐(1)
win8设置无线网络,无法启动承载网络
摘要:如果已经设置过无线网络,输入“netsh wlan start hostednetwork”时。报错此时设备管理器--〉网络适配器--Microsoft托管网络虚拟适配器/Microsfot内核调试网络适配器,启动此项然后再输入“netsh wlan start hostednetwork” 即可成功启动虚拟无线网络 阅读全文
posted @ 2013-04-15 09:48 非“程”勿扰 阅读(284) 评论(0) 推荐(0)
Silverlight_ArcGIS中地图弹出框的两种方式
摘要:第一种: 这种方法,鼠标不能放到弹出框上 ContentControl contentControl = new ContentControl(); contentControl.Template = Application.Current.Resources["WaterEarlyMaptips"] as ControlTemplate;//资源 featureLayer.MapTip = contentControl; featureLayer.MapTip.DataContext = this;//绑定数据 ... 阅读全文
posted @ 2013-04-10 17:07 非“程”勿扰 阅读(440) 评论(0) 推荐(0)
使用C#调用Python脚本,带参数列表
摘要:static void Main(string[] args) { string[] strArr;//参数列表 string sArguments = @"Pythons.py";//这里是python的文件名字 RunPythonScript(sArguments, "-u", strArr); }public static void RunPythonScript(string sArgName, string args = "",params string[] teps) ... 阅读全文
posted @ 2013-04-09 16:32 非“程”勿扰 阅读(1800) 评论(0) 推荐(0)