MainForm.cs
上传用户:linger1010
上传日期:2008-12-08
资源大小:561k
文件大小:4k
源码类别:

Windows Mobile

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Drawing.Imaging;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace HandDrawer
  10. {
  11. public partial class MainForm : Form
  12. {
  13. /// <summary>
  14. /// 存放所有的线条。
  15. /// </summary>
  16. /// <remarks>
  17. /// 图片是由很多条线构成的。每条线又是由鼠标经过的很多点构成的。
  18. /// 因此一个List&lt;Point&gt;表示一条线。List&lt;List&lt;Point&gt;&gt;就表示所有的线条。
  19. /// </remarks>
  20. private List<List<Point>> m_lines;
  21. /// <summary>
  22. /// 存放新的一条线。
  23. /// </summary>
  24. private List<Point> m_newLine;
  25. public MainForm()
  26. {
  27. InitializeComponent();
  28. m_lines = new List<List<Point>>();
  29. }
  30. private void MainForm_MouseDown(object sender, MouseEventArgs e)
  31. {
  32. // 鼠标按下的时候新建一个线条。
  33. m_newLine = new List<Point>();
  34. }
  35. private void MainForm_MouseMove(object sender, MouseEventArgs e)
  36. {
  37. // 将经过的点添加到当前线条列表,并连接。
  38. m_addPoint(e.X, e.Y);
  39. }
  40. private void MainForm_MouseUp(object sender, MouseEventArgs e)
  41. {
  42. // 将经过的点添加到当前线条列表,并连接。
  43. m_addPoint(e.X, e.Y);
  44. // 将线条添加到所有线条列表。
  45. m_lines.Add(m_newLine);
  46. }
  47. private void MainForm_Paint(object sender, PaintEventArgs e)
  48. {
  49. // 重绘所有线条。
  50. m_drawAllLines(e.Graphics);
  51. }
  52. private void m_mnuClear_Click(object sender, EventArgs e)
  53. {
  54. // 首先清除所有线条中的点。
  55. foreach(List<Point> line in m_lines)
  56. line.Clear();
  57. // 清除所有线条。
  58. m_lines.Clear();
  59. // 重绘整个窗体。
  60. this.Invalidate();
  61. }
  62. private void m_mnuSave_Click(object sender, EventArgs e)
  63. {
  64. // 显示对话框,获取用户要保存的文件名。
  65. if(DialogResult.OK != m_saveFileDialog.ShowDialog())
  66. return;
  67. // 所需的资源
  68. Bitmap bmp = null;  // 待保存的图片
  69. Graphics g = null;  // 从图片获得的绘图表面
  70. Brush b = null;  // 用于绘制背景色的画刷
  71. try
  72. {
  73. // 创建或获取所需的资源。
  74. bmp = new Bitmap(this.ClientSize.Width, this.ClientSize.Height);
  75. g = Graphics.FromImage(bmp);
  76. b = new SolidBrush(Color.White);
  77. // 首先把背景填充为白色。
  78. g.FillRectangle(b, this.ClientRectangle);
  79. // 绘制所有的线条。
  80. m_drawAllLines(g);
  81. // 保存位图。
  82. bmp.Save(m_saveFileDialog.FileName, ImageFormat.Bmp);
  83. }
  84. catch(Exception ex)
  85. {
  86. MessageBox.Show(
  87. String.Format("Cannot save the picture, detailes: {0}", ex.Message),
  88. "Error",
  89. MessageBoxButtons.OK,
  90. MessageBoxIcon.Hand,
  91. MessageBoxDefaultButton.Button1);
  92. }
  93. finally
  94. {
  95. // 清理已经获取的资源。
  96. if(bmp != null)
  97. bmp.Dispose();
  98. if(g != null)
  99. g.Dispose();
  100. if(b != null)
  101. b.Dispose();
  102. }
  103. }
  104. /// <summary>
  105. /// 向当前线条中添加一个点,并将其与线条中的最后一个点连接起来。
  106. /// </summary>
  107. /// <param name="x">新添加的点的横坐标。</param>
  108. /// <param name="y">新添加的点的纵坐标。</param>
  109. private void m_addPoint(int x, int y)
  110. {
  111. // 将经过的点添加到线条。
  112. m_newLine.Add(new Point(x, y));
  113. // 绘制线段,连接当前线条的最后一点和新经过的这一点。
  114. int points = m_newLine.Count;
  115. if(points > 1)
  116. {
  117. Graphics g = this.CreateGraphics();
  118. Pen p = new Pen(Color.Black);
  119. // m_newLine[points - 2]是原线条最后一点
  120. // m_newLine[points - 1]是新添加的点
  121. g.DrawLine(
  122. p,
  123. m_newLine[points - 2].X, m_newLine[points - 2].Y,
  124. m_newLine[points - 1].X, m_newLine[points - 1].Y);
  125. g.Dispose();
  126. p.Dispose();
  127. }
  128. }
  129. /// <summary>
  130. /// 用来绘制所有的线条。用于 1.窗体重绘 2.保存时绘制到位图。
  131. /// </summary>
  132. /// <param name="g">用于绘图的Graphics。</param>
  133. private void m_drawAllLines(Graphics g)
  134. {
  135. Pen p = new Pen(Color.Black);
  136. int totalLines = m_lines.Count;
  137. for(int i = 0; i < totalLines; i++)
  138. {
  139. g.DrawLines(p, m_lines[i].ToArray());
  140. }
  141. p.Dispose();
  142. }
  143. }
  144. }