登录
首页 » C# » C# Email发送程序

C# Email发送程序

于 2015-01-08 发布
0 207
下载积分: 1 下载次数: 0

代码说明:

C# Email发送程序

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

发表评论

0 个回复

  • linux QT开发的照片阅读器
    ImageViewer-master.zip
    2021-06-24 00:31:12下载
    积分:1
  • C# 鼠标精灵 事件提醒例子源码
    C# 鼠标精灵 事件提醒例子源码
    2015-02-27下载
    积分:1
  • C++ Qt设计模式第2版(中文版)+源码
    C Qt设计模式(第2版)是美国萨福克大学已使用十余年的经典教程,利用跨平台开源软件开发框架Qt阐释了C 和设计模式中的主要思想。全书共分四个部分:第一部分介绍C 、UML、Qt、模型-视图、SQL、XML、设计模式等基础知识,目的是为零基础的C 初学者铺垫一条学习面向对象编程的快捷之路;第二部分讲解内存访问、继承等重要的C 特性,是前一部分的延伸和拓展;第三部分使用Phonon编写了一个多媒体播放器,展示了主要技术理念的应用方法;附录部分给出了C 保留关键字、Debian和Qt程序开发环境的配置等内容。每节的练习题和各章后面的复习题,既可作为课堂上的讨论题,也可进一步启发读者对于关键知识点的思考。【核心代码】C   Qt设计模式  第2版(中文版).pdfQT设计模式Introduction to Design Patterns in C with Qt 2nd Edition.pdfansicastarithmeticarraysbashbookpagecarclasscardgamecastscircularclargsclassesclipboardcommon.pricomplexcompositeconstconstptrcontainerscontinuectorctorpolydebuggingderivationdesignerdestructordockearly-examplesellipsisencapsulationenumsenvironmenteventloopexceptionsfindchildrenfunctionsfunctorsgenericgotohandoutshugeintiostreamiterationjobseekerlayoutslibslifecycleloginlogtailmetatypemodelviewmultinheritancemystringnamespacenewfailureoperatorspointer-containerpointerspolymorphic1.ccpolymorphic2.ccpreprocessorprivatederivpropertiespuzzleqappqobjectqonsoleqstdqstringqtioqtrttiqtstreamsquizzesreferencereflectionregex-testerregexprttiserializersqlstaticsstdstreamsstlstoragestructdemosubobjectswitchtemplatesthreadstimertypesundo-demovalidatewidgetsxml
    2021-05-06下载
    积分:1
  • stm32教程(嵌入式开发入门教程)
    stm32基础教程(嵌入式开发入门教程)
    2019-11-20下载
    积分:1
  • C#树节点的直接修改
    C#树节点的直接修改
    2013-10-31下载
    积分:1
  • SPY++ 工具下载,非源码
    查看窗口句柄
    2014-11-26下载
    积分:1
  • 模拟 键盘鼠标连点器 实例源码
    模拟鼠标和键盘的操作,支持全局热键
    2018-04-11下载
    积分:1
  • log4net 在wpf中记录全局错误 例子
    log4net 在wpf中记录全局错误 例子
    2015-06-10下载
    积分:1
  • C# 套打Demo
    套打Demo 【核心代码】using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Drawing.Printing;namespace Print_Demo{ public partial class Form1 : Form { public PrintDocument printDt = new PrintDocument(); //打印文档对象 Font printFont; //打印使用的字体 public Form1() { InitializeComponent(); } void printDt_PrintPage(object sender, PrintPageEventArgs e) { float pointX = 10; float pointY = 10; e.Graphics.DrawString("打印内容", new Font("宋体", 16F), Brushes.Black, pointX 60, pointY); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 26,pointX 300,pointY 26); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 35); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 56, pointX 300, pointY 56); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 65); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 86, pointX 300, pointY 86); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 95); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 116, pointX 300, pointY 116); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 125); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 146, pointX 300, pointY 146); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 155); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 176, pointX 300, pointY 176); e.Graphics.DrawString("打印内容", printFont, Brushes.Black, pointX, pointY 185); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 206, pointX 300, pointY 206); e.Graphics.DrawString("检测结果", printFont, Brushes.Black, pointX, pointY 233); e.Graphics.DrawString("通过", new Font("宋体",22F,FontStyle.Bold), Brushes.Black, pointX 90, pointY 225); e.Graphics.DrawLine(new Pen(Color.Black), pointX, pointY 265, pointX 300, pointY 265); e.Graphics.DrawString("单位名称", printFont, Brushes.Black, pointX, pointY 275); } private void Form1_Load(object sender, EventArgs e) { printDt.PrintPage = new PrintPageEventHandler(printDt_PrintPage); printFont = new Font("宋体", 12F); } private void btnPrint_Click(object sender, EventArgs e) { //PrintDialog printDlg = new PrintDialog(); //printDlg.Document = printDt; //printDlg.AllowPrintToFile = true; //printDlg.AllowCurrentPage = true; //printDlg.AllowSelection = true; //printDlg.ShowDialog(); //printDlg.ShowDialog(); printDt.Print(); } private void btnLook_Click(object sender, EventArgs e) { PrintPreviewDialog printPreview = new PrintPreviewDialog(); printPreview.PrintPreviewControl.Document = printDt; printPreview.ShowDialog(this); } }}
    2021-05-06下载
    积分:1
  • 健身房管理系统(控制台源码)
    【实例简介】基于c 的健身房管理系统  期末课设
    2021-06-21 00:31:07下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载