[转] C# 绘制报表,使用Graphics.DrawString 方法

简介:

原文 Graphics.DrawString 方法

在指定位置并且用指定的 Brush 和Font 对象绘制指定的文本字符串。

public void DrawString(
	string s,
	Font font,
	Brush brush,
	float x,
	float y
)


MSDN上的实例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public  void  DrawStringFloat(PaintEventArgs e)
 
{
 
// Create string to draw
 
. String drawString =  "Sample Text" // Create font and brush.
 
Font drawFont =  new  Font( "Arial" , 16);
 
  SolidBrush drawBrush =  new  SolidBrush(Color.Black); // Create point for upper-left corner of drawing.
 
  float  x = 150.0F;  float  y = 150.0F; // Draw string to screen.
 
e.Graphics.DrawString(drawString, drawFont, drawBrush, x, y);
 
}
 
 

 

应用的实例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
          private  void  Myprintpage1(Graphics formGraphics,  int  w,  int  h)
        {
 
            Pen myPen =  new  Pen(Color.FromArgb(255, Color.Black), 1.0F);
            Font MyFont1 =  new  Font( "宋体" , 12, FontStyle.Bold);
            Font MyFont2 =  new  Font( "宋体" , 10, FontStyle.Bold);
 
            formGraphics.TranslateTransform(100.0F, 50.0F);
            //画表格横线
 
 
            //画表格竖线
 
            for  ( int  i = 200; i < 360; i += 50)
            {
                formGraphics.DrawLine(myPen,  new  Point(0, i),  new  Point(600, i));
                formGraphics.DrawLine(myPen,)
            }
 
            for  ( int  i = 0; i < 750; i += 150)
            {
                formGraphics.DrawLine(myPen,  new  Point(i, 200),  new  Point(i, 350));
            }
 
            //画表格斜线
            formGraphics.DrawLine(myPen,  new  Point(0, 200),  new  Point(150, 250));
            //formGraphics.DrawLine(myPen, new Point(150, 125), new Point(300, 125));
            //formGraphics.DrawLine(myPen, new Point(150, 175), new Point(300, 175));
            //写字  
            formGraphics.DrawString( "    ---数据报表---" new  Font( "宋体" , 20, FontStyle.Bold), Brushes.DimGray, 100, -10);
 
            formGraphics.DrawString( "试验日期(Date)      :_______________" , MyFont1, Brushes.DimGray, 0, 50);
            formGraphics.DrawString( "操作人员(Operator):_______________" , MyFont1, Brushes.DimGray, 0, 75);
 
            formGraphics.DrawString( "试件类型(Parts Type):_______________" , MyFont1, Brushes.DimGray, 330, 50);
            formGraphics.DrawString( "试件编号(Parts No):_______________" , MyFont1, Brushes.DimGray, 330, 75);
 
            formGraphics.DrawString( "上号(UP):_______________" , MyFont1, Brushes.DimGray, 0, 100);
            formGraphics.DrawString( "下号(DOWN):_______________" , MyFont1, Brushes.DimGray, 330, 100);
 
          
            formGraphics.DrawString( "电压" , MyFont1, Brushes.DimGray, 190, 220);
 
            //formGraphics.DrawString("  (Forward Speed)", MyFont2, Brushes.DimGray, 300, 110);
            formGraphics.DrawString( "电流" , MyFont1, Brushes.DimGray, 340, 220);
 
            // formGraphics.DrawString("  (Backward Speed)", MyFont2, Brushes.DimGray, 455, 110);
            formGraphics.DrawString( "备用" , MyFont1, Brushes.DimGray, 490, 220);
 
            formGraphics.DrawString( "试验数据(Date)" , MyFont1, Brushes.DimGray, 0, 270);
            formGraphics.DrawString( "数据单位(Unit)" , MyFont1, Brushes.DimGray, 0, 320);
 
            formGraphics.DrawString( "操作人员(Operator):_______________   检验者(Checker):_______________" , MyFont1, Brushes.DimGray, 0, 970);
 
            formGraphics.DrawString(DateTime.Now.ToString( "yyyy/MM/dd" ), MyFont1, Brushes.DimGray, 180, 50);
            formGraphics.DrawString(global.temstr[0], MyFont1, Brushes.DimGray, 180, 75);
            formGraphics.DrawString(global.temstr[2], MyFont1, Brushes.DimGray, 510, 50);
            formGraphics.DrawString(global.temstr[1], MyFont1, Brushes.DimGray, 510, 75);
 
            formGraphics.DrawString(global.temstr[3], MyFont1, Brushes.DimGray, 180, 100);
            formGraphics.DrawString(global.temstr[4], MyFont1, Brushes.DimGray, 500, 100);
 
            formGraphics.DrawString( " " , MyFont1, Brushes.DimGray, 190, 270); //
            formGraphics.DrawString( " " , MyFont1, Brushes.DimGray, 340, 270); //
            formGraphics.DrawString( " " , MyFont1, Brushes.DimGray, 490, 270);
 
 
 
            formGraphics.DrawString( "V" , MyFont1, Brushes.DimGray, 190, 320);
 
            formGraphics.DrawString( "A" , MyFont1, Brushes.DimGray, 340, 320);
 
            formGraphics.DrawString( " " , MyFont1, Brushes.DimGray, 490, 320);
 
}
 
 

 

http://img.blog.csdn.net/20140716170343149?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvRmlyZTg3MDkyM2NoZW4=/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/SouthEast

 

 


没有整理与归纳的知识,一文不值!高度概括与梳理的知识,才是自己真正的知识与技能。 永远不要让自己的自由、好奇、充满创造力的想法被现实的框架所束缚,让创造力自由成长吧! 多花时间,关心他(她)人,正如别人所关心你的。理想的腾飞与实现,没有别人的支持与帮助,是万万不能的。
分类:  C#、WebService



    本文转自wenglabs博客园博客,原文链接:http://www.cnblogs.com/arxive/p/5826716.html,如需转载请自行联系原作者



相关文章
|
3月前
|
开发框架 .NET 程序员
C# 去掉字符串最后一个字符的 4 种方法
在实际业务中,我们经常会遇到在循环中拼接字符串的场景,循环结束之后拼接得到的字符串的最后一个字符往往需要去掉,看看 C# 提供了哪4种方法可以高效去掉字符串的最后一个字符
348 0
|
2月前
|
编译器 C#
C#多态概述:通过继承实现的不同对象调用相同的方法,表现出不同的行为
C#多态概述:通过继承实现的不同对象调用相同的方法,表现出不同的行为
125 65
|
6月前
|
数据采集 数据可视化 测试技术
C#生成Selenium测试报告:实用方法与技巧
在C#中使用Selenium进行自动化测试时,结合代理IP和ExtentReports能增强测试安全性和报告质量。安装必备工具如Selenium WebDriver、NUnit和ExtentReports。在测试设置中,配置代理(如亿牛云爬虫代理)以隐藏IP,通过ChromeOptions定制UserAgent,并添加Cookie。测试代码示例展示了如何打开网页、执行搜索并生成详细的测试报告。使用ExtentReports可创建可视化测试结果,便于团队分析。
C#生成Selenium测试报告:实用方法与技巧
|
1月前
|
JSON 程序员 C#
使用 C# 比较两个对象是否相等的7个方法总结
比较对象是编程中的一项基本技能,在实际业务中经常碰到,比如在ERP系统中,企业的信息非常重要,每一次更新,都需要比较记录更新前后企业的信息,直接比较通常只能告诉我们它们是否指向同一个内存地址,那我们应该怎么办呢?分享 7 个方法给你!
|
1月前
|
C# UED SEO
C# 异步方法async / await任务超时处理
通过使用 `Task.WhenAny`和 `Task.Delay`方法,您可以在C#中有效地实现异步任务的超时处理机制。这种方法允许您在指定时间内等待任务完成,并在任务超时时采取适当的措施,如抛出异常或执行备用操作。希望本文提供的详细解释和代码示例能帮助您在实际项目中更好地处理异步任务超时问题,提升应用程序的可靠性和用户体验。
69 3
|
2月前
|
存储 C#
【C#】大批量判断文件是否存在的两种方法效率对比
【C#】大批量判断文件是否存在的两种方法效率对比
51 1
|
2月前
|
C#
C#的方法的参数传递
C#的方法的参数传递
25 0
|
2月前
|
数据可视化 程序员 C#
C#中windows应用窗体程序的输入输出方法实例
C#中windows应用窗体程序的输入输出方法实例
54 0
|
3月前
|
C#
C#一分钟浅谈:Lambda 表达式和匿名方法
本文详细介绍了C#编程中的Lambda表达式与匿名方法,两者均可用于定义无名函数,使代码更简洁易维护。文章通过基础概念讲解和示例对比,展示了各自语法特点,如Lambda表达式的`(parameters) =&gt; expression`形式及匿名方法的`delegate(parameters)`结构。并通过实例演示了两者的应用差异,强调了在使用Lambda时应注意闭包问题及其解决策略,推荐优先使用Lambda表达式以增强代码可读性。
49 8
|
4月前
|
图形学 C# 开发者
全面掌握Unity游戏开发核心技术:C#脚本编程从入门到精通——详解生命周期方法、事件处理与面向对象设计,助你打造高效稳定的互动娱乐体验
【8月更文挑战第31天】Unity 是一款强大的游戏开发平台,支持多种编程语言,其中 C# 最为常用。本文介绍 C# 在 Unity 中的应用,涵盖脚本生命周期、常用函数、事件处理及面向对象编程等核心概念。通过具体示例,展示如何编写有效的 C# 脚本,包括 Start、Update 和 LateUpdate 等生命周期方法,以及碰撞检测和类继承等高级技巧,帮助开发者掌握 Unity 脚本编程基础,提升游戏开发效率。
100 0