摘要: 子页面向父页面传值。子页面代码:public delegate void DeleteSelected(string id); public event DeleteSelected DoDelete; private void image1_MouseLeftButtonUp(object sender, MouseButtonEventArgs e) { if (DoDelete != null) { Image img=sender as Image; DoDelete(img.Tag.ToString().Trim()); } }父页面代码:{GetTradeControl getT. 阅读全文
posted @ 2013-08-05 15:22 碧落京豪 阅读(175) 评论(0) 推荐(0) 编辑
摘要: --------------------------基础篇-------------------------------I:OAuth 2.0 概述首先大家来看看国内新浪跟腾讯这两大头对OAuth 2.0是怎么个用官方语言去阐述的:新浪:OAuth2.0是从2006年开始设计OAuth协议的下一个版本,OAuth2.0同时提供Web,桌面和移动应用程序的支持,并较1.0相比整个授权验证流程更简单更安全。也是新浪微博开放平台未来最主要的用户身份验证和授权方式。腾讯:腾讯微博开放平台,是基于腾讯微博系统,为广大开发者和用户提供的开放数据分享与传播平台。广大开发者和用户登录平台后,就可以使用平台提供 阅读全文
posted @ 2013-07-17 09:09 碧落京豪 阅读(8463) 评论(0) 推荐(1) 编辑
摘要: 假定按照 如何:对基于 HTTP 的服务发出请求中描述的方法向基于 HTTP 的 Web 服务发出请求后,在 Stream 类型的 responseStream 对象中返回了下列 JSON。 {"IsMember" : true, "Name" : "John", "Age" : 24} 使用 DataContractJsonSerializer 定义 User 类型来反序列化 JSON。publicclassUser{publicboolIsMember{get;set;}publicstringName{get 阅读全文
posted @ 2013-07-17 09:01 碧落京豪 阅读(323) 评论(0) 推荐(0) 编辑
摘要: ArcGIS9.X系列软件教程进行整理,包括ArcGIS应用教程、ArcGIS Engine开发教程、ArcGIS Server开发教程等。1、ArcGIS9.X 系列安装视频教程http://www.gissky.net/Soft/280.html2、ARCGIS地理信息系统空间分析实验教程http://www.gissky.net/Soft/137.html3、用ArcGIS 绘制一幅完整的地图/Article/1520.htm4、Arctoolbox实用教程http://www.gissky.net/Soft/142.html5、Geodatabase和ArcSDE中文教程http:// 阅读全文
posted @ 2013-05-21 14:40 碧落京豪 阅读(479) 评论(0) 推荐(0) 编辑
摘要: 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 System.Collections.Generic;using Syste 阅读全文
posted @ 2013-04-18 16:35 碧落京豪 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 1.ConfigurationManager提供对客户端应用程序配置文件的访问。 其有两个属性1.ConnectionStrings 获取当前应用程序默认配置的 ConnectionStringsSection 数据。 方法一: string myConn =System.Configuration.ConfigurationManager.ConnectionStrings["sqlConnectionString"].ConnectionString; 方法二: string connString =System.Web.Configuration.WebConfigu 阅读全文
posted @ 2013-04-15 17:39 碧落京豪 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 1.XML读取,<?xml version='1.0'?><bookstore xmlns="urn:newbooks-schema"> <book genre="novel" style="hardcover"> <title>The Handmaid's Tale</title> <author> <first-name>Margaret</first-name> <last-name>Atwood& 阅读全文
posted @ 2013-04-08 09:53 碧落京豪 阅读(268) 评论(0) 推荐(0) 编辑
摘要: DateTime DTtime; private void dataGrid2_MouseLeftButtonUp(object sender, MouseButtonEventArgs e) { if (DTime.ToString()!="0001/1/1 0:00:00")//如果DTime是第一次运行,没有设置值,就会是0001/1/1 0:00:00 { TimeSpan ts = DateTime.Now -DTime ; if (int.P... 阅读全文
posted @ 2013-03-27 11:55 碧落京豪 阅读(146) 评论(0) 推荐(0) 编辑
摘要: private void dg_SelectionChanged(object sender, SelectionChangedEventArgs e) { //获取选定单元格列 Int32 i = dg.CurrentColumn.DisplayIndex; //取值 string sColumnValue = ((TextBlock)this.dg.Columns[i].GetCellContent(this.dg.SelectedItem)).Text.Trim(); } 阅读全文
posted @ 2013-03-27 11:06 碧落京豪 阅读(142) 评论(0) 推荐(0) 编辑
摘要: ----本文转自:http://www.cnblogs.com/liyuyang/articles/1310716.html请求方式,分为GET与POST:GET最为常见的HTTP请求,普通上网浏览页面就是GET。GET方式的参数请求直接跟在URL后,以问号开始。(JS中用window.location.search获得)。参数可以用encodeURIComponent进行编码,使用方式:var EnParam = encodeURIComponent(param);URL只支持大约2K的长度,即2048字符数;使用GET进行AJAX请求时候会缓存导致出现的页面不是正确的,一般方法加rando 阅读全文
posted @ 2013-03-05 17:19 碧落京豪 阅读(275) 评论(0) 推荐(0) 编辑