由于项目中还没有更好的多点触控思路,所以需要将多点触控暂时关闭;关闭多点触控的代码只有一行:private void
image_ManipulationStarting(object sender, ManipulationStartingEventArgs
e){e.Mode = Manipul...
分类:
其他好文 时间:
2014-05-08 14:34:30
阅读次数:
251
private void button1_Click(object sender, EventArgs
e) { //OpenFileDialog dlg = new OpenFileDialog(); OpenFileDialog fileDialog1 =
new OpenFileDialog....
分类:
其他好文 时间:
2014-05-08 13:27:26
阅读次数:
229
asp.net下载文件几种方式 protected void Button1_Click(object
sender, EventArgs e) { /*
微软为Response对象提供了一个新的方法TransmitFile来解决使用Response.BinaryWrite 下载超过400m...
分类:
Web程序 时间:
2014-05-08 11:54:24
阅读次数:
498
后台: protected void ibtnRegedit_Click(object sender,
ImageClickEventArgs e) { if (!Page.IsValid || !CheckVCode()) retu...
分类:
其他好文 时间:
2014-05-08 00:44:32
阅读次数:
281
之前都是用扩展方法来copy属性值,不过兼容性不是很好。(关于这个扩展方法可以参照这个博客),不过我们可以通过下方的代码来实现,由于是微软提供的功能,所以不需要考虑兼容性问题:public partial class WebForm2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventAr...
分类:
其他好文 时间:
2014-05-08 00:19:02
阅读次数:
326
1 调用发送短信功能:Uri smsToUri =
Uri.parse("smsto:");Intent sendIntent = new Intent(Intent.ACTION_VIEW,
smsToUri);sendIntent.putExtra("address", "123456");//...
分类:
移动开发 时间:
2014-05-07 20:37:58
阅读次数:
639
private void button1_Click(object sender, EventArgs
e) { //OpenFileDialog dlg = new OpenFileDialog(); OpenFileDialog dlg = new
OpenFileDialog(); if...
分类:
其他好文 时间:
2014-05-07 20:28:32
阅读次数:
295
private void Form5_MouseMove(object sender,
MouseEventArgs e) { int intOX = rectDrawArea.X; int intOY = rectDrawA...
分类:
其他好文 时间:
2014-05-07 13:15:11
阅读次数:
270
private void MainForm_Load(object sender,
EventArgs e) { BeginInvoke(new MethodInvoker(delegate { Hide(); })); DoJob();
Process.GetCurrentProcess().K....
分类:
移动开发 时间:
2014-05-07 10:56:39
阅读次数:
348
procedure TForm1.N11DrawItem(Sender: TObject;
ACanvas: TCanvas; ARect: TRect; Selected: Boolean);beginIf (Selected)
ThenbeginACanvas.Font.Color := clW...
分类:
其他好文 时间:
2014-05-07 10:52:51
阅读次数:
283