C# winform实现截屏,附代码
namespace Message{ partial class Form3 { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; …… 阅读全文
namespace Message{ partial class Form3 { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; …… 阅读全文
//发送文件 private void btn_sendFile_Click(object sender, EventArgs e) { //打开文件 OpenFileDialog dlg = new OpenFileDialog(); if (dlg.ShowDialog() = …… 阅读全文
//发送大量文本消息 private void sendMessage() { if (richTextBox_send.Text.Trim().Length==0 && richTextBox_send.Rtf.IndexOf("pict")<0) { MessageBox. …… 阅读全文
1、在vs2010选择“新建项目”----“其他项目类型”----“Visual Studio Installerà“安装项目”:命名为:Setup1。这是在VS2010中将有三个文件夹, 1.“应用程序文件夹”表示要安装的应用程序需要添加的文件;2.“用户的‘程序’菜单”表示:应用程序安装完,用户的“开始菜单”中的显示的内容,一般在这个文件夹中,需要 …… 阅读全文
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;namespac …… 阅读全文
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 Scree …… 阅读全文
#region /// /// 开机启动项 /// /// 是否启动 /// 启动值的名称 /// 启动程序的路径 Application.ExecutablePath public static void RunWhenStart(bool Started, strin …… 阅读全文
//读配置文件 方法(1) //ConfigurationManager.RefreshSection("appSettings"); //强制重新载入string settingValue = ConfigurationManager.AppSettings.Get("setting1"); //读配置文件 方法(2) Configuration config = Configurat …… 阅读全文