登录
首页 » C# » SPY++ 工具下载,非源码

SPY++ 工具下载,非源码

于 2014-11-26 发布
0 190
下载积分: 1 下载次数: 0

代码说明:

查看窗口句柄

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • C# 判断用户用手机访问还是用电脑访问网页 代码
    C# 判断用户用手机访问还是用电脑访问网页 代码
    2013-07-15下载
    积分:1
  • c# jwt 网络令牌(JSON Web Tokens (JWT))
    c# jwt 网络令牌(JSON Web Tokens (JWT))
    2017-06-07下载
    积分:1
  • C#与SAP系统接口
    NCO3.0的应用说明
    2015-03-26下载
    积分:1
  • 仓库管理系统源码(含数据库以及视频讲解)
    仓库管理系统源码(含数据库以及视频讲解)
    2020-05-25下载
    积分:1
  • C# winform截屏 实例源码下载
    C# winform截屏 实例源码下载
    2014-11-05下载
    积分:1
  • C#三层架构开发的网上点餐系统(毕业设计答辩作品+数据库源代码)
    VS2019开发环境 2008R2数据库,有数据库脚本,导入执行完美运行项目,UI界面漂亮 【实例简介】
    2021-11-19 00:39:38下载
    积分:1
  • 关于datagridview控件的简单例子,更容易理解一些
    using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace DataGridViewSample{ public partial class Form1 : Form { public static List Tests = new List(); public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { this.dataGridView1.DataSource = Tests; } private void button1_Click(object sender, EventArgs e) { frmAdd form = new frmAdd(null); if (form.ShowDialog() == DialogResult.OK) { this.dataGridView1.DataSource = null; this.dataGridView1.DataSource = Tests; } } private void button2_Click(object sender, EventArgs e) { if (this.dataGridView1.SelectedRows != null) { frmAdd form = new frmAdd(new Test( Convert.ToInt32(this.dataGridView1.SelectedRows[0].Cells[0].Value), Convert.ToDecimal(this.dataGridView1.SelectedRows[0].Cells[1].Value), Convert.ToDateTime(this.dataGridView1.SelectedRows[0].Cells[2].Value), this.dataGridView1.SelectedRows[0].Cells[3].Value.ToString())); if (form.ShowDialog() == DialogResult.OK) { this.dataGridView1.DataSource = null; this.dataGridView1.DataSource = Tests; } } } private void button3_Click(object sender, EventArgs e) { //使用前面示例中的代码,用DataGridView或者List来做导出都是可以的 } } public class Test { public Test(int id, decimal voltage, DateTime record, string remark) { ID = id; Voltage = voltage; Record = record; Remark = remark; } public int ID { get; set; } public decimal Voltage { get; set; } public DateTime Record { get; set; } public string Remark { get; set; } }}
    2015-06-11下载
    积分:1
  • C# 下载图片示例
    using System;using System.Web;public class DownImg : IHttpHandler { //图片下载功能 public void ProcessRequest(HttpContext context) { System.Net.WebResponse response = null; System.IO.Stream stream = null; string path = context.Request.Url.Query.Split(new string[] { "coverimg=" }, StringSplitOptions.RemoveEmptyEntries)[1]; System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create(path); response = request.GetResponse(); stream = response.GetResponseStream(); System.IO.MemoryStream memStream = Txooo.Mobile.HttpTools.CloneStream(stream); byte[] bytes = new byte[memStream.Length]; memStream.Read(bytes, 0, bytes.Length); // 设置当前流的位置为流的开始 memStream.Seek(0, System.IO.SeekOrigin.Begin); context.Response.ContentType = "application/octet-stream"; //通知浏览器下载文件而不是打开 string fileName = DateTime.Now.Ticks.ToString() ".jpg"; context.Response.AddHeader("Content-Disposition", "attachment; filename=" fileName); context.Response.BinaryWrite(bytes); context.Response.Flush(); } public bool IsReusable { get { return false; } }}
    2014-05-29下载
    积分:1
  • c#任务管理器 示例代码
    自己做的c#任务管理器
    2014-09-19下载
    积分:1
  • C# 彩色连珠 小游戏源码
    C# 彩色连珠 小游戏源码
    2015-06-09下载
    积分:1
  • 696518资源总数
  • 105877会员总数
  • 14今日下载