码迷,mamicode.com
首页 >  
搜索关键字:Sender address reje    ( 9380个结果
WPF 中如何屏蔽多点触控事件?
由于项目中还没有更好的多点触控思路,所以需要将多点触控暂时关闭;关闭多点触控的代码只有一行: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 下载文件的几种方式
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
使用Attach和Detach来实现更新的时候避免逐一赋值的麻烦
之前都是用扩展方法来copy属性值,不过兼容性不是很好。(关于这个扩展方法可以参照这个博客),不过我们可以通过下方的代码来实现,由于是微软提供的功能,所以不需要考虑兼容性问题:public partial class WebForm2 : System.Web.UI.Page { protected void Page_Load(object sender, EventAr...
分类:其他好文   时间:2014-05-08 00:19:02    阅读次数:326
android中调用系统的发送短信、发送邮件、打电话功能
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
GDI+实现双缓冲绘图方法一
private void Form5_MouseMove(object sender, MouseEventArgs e) { int intOX = rectDrawArea.X; int intOY = rectDrawA...
分类:其他好文   时间:2014-05-07 13:15:11    阅读次数:270
.NET Application without UI
private void MainForm_Load(object sender, EventArgs e) { BeginInvoke(new MethodInvoker(delegate { Hide(); })); DoJob(); Process.GetCurrentProcess().K....
分类:移动开发   时间:2014-05-07 10:56:39    阅读次数:348
自定义popupmenu菜单背景色
procedure TForm1.N11DrawItem(Sender: TObject; ACanvas: TCanvas; ARect: TRect; Selected: Boolean);beginIf (Selected) ThenbeginACanvas.Font.Color := clW...
分类:其他好文   时间:2014-05-07 10:52:51    阅读次数:283
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!