<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FCSharp_Tutorial%2F2D%2FMouse_Draw</id>
		<title>Csharp/CSharp Tutorial/2D/Mouse Draw - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FCSharp_Tutorial%2F2D%2FMouse_Draw"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/2D/Mouse_Draw&amp;action=history"/>
		<updated>2026-04-30T01:39:46Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/2D/Mouse_Draw&amp;diff=6374&amp;oldid=prev</id>
		<title> в 15:31, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/2D/Mouse_Draw&amp;diff=6374&amp;oldid=prev"/>
				<updated>2010-05-26T15:31:53Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 15:31, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/2D/Mouse_Draw&amp;diff=6375&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/CSharp_Tutorial/2D/Mouse_Draw&amp;diff=6375&amp;oldid=prev"/>
				<updated>2010-05-26T12:18:52Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Basic Paint Form: click mouse button to add the an Ellipse==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;using System;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Collections;&lt;br /&gt;
using System.ruponentModel;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Drawing.Drawing2D;&lt;br /&gt;
public class FormBasicPaintMouseClick : System.Windows.Forms.Form&lt;br /&gt;
{&lt;br /&gt;
  private System.ruponentModel.Container components = null;&lt;br /&gt;
  private System.Windows.Forms.Button btnRenderedButton;&lt;br /&gt;
  private System.Windows.Forms.Button btnRenderToOtherButton;&lt;br /&gt;
  private ArrayList myPts = new ArrayList();&lt;br /&gt;
  public FormBasicPaintMouseClick()&lt;br /&gt;
  {&lt;br /&gt;
    InitializeComponent();&lt;br /&gt;
  }&lt;br /&gt;
  protected override void Dispose( bool disposing )&lt;br /&gt;
  {&lt;br /&gt;
    if( disposing )&lt;br /&gt;
    {&lt;br /&gt;
      if (components != null) &lt;br /&gt;
      {&lt;br /&gt;
        components.Dispose();&lt;br /&gt;
      }&lt;br /&gt;
    }&lt;br /&gt;
    base.Dispose( disposing );&lt;br /&gt;
  }&lt;br /&gt;
  private void InitializeComponent()&lt;br /&gt;
  {&lt;br /&gt;
    this.btnRenderedButton = new System.Windows.Forms.Button();&lt;br /&gt;
    this.btnRenderToOtherButton = new System.Windows.Forms.Button();&lt;br /&gt;
    this.SuspendLayout();&lt;br /&gt;
    // &lt;br /&gt;
    // btnRenderedButton&lt;br /&gt;
    // &lt;br /&gt;
    this.btnRenderedButton.Location = new System.Drawing.Point(168, 120);&lt;br /&gt;
    this.btnRenderedButton.Name = &amp;quot;btnRenderedButton&amp;quot;;&lt;br /&gt;
    this.btnRenderedButton.Size = new System.Drawing.Size(112, 136);&lt;br /&gt;
    this.btnRenderedButton.TabIndex = 0;&lt;br /&gt;
    this.btnRenderedButton.Text = &amp;quot;Click on other button!&amp;quot;;&lt;br /&gt;
    // &lt;br /&gt;
    // btnRenderToOtherButton&lt;br /&gt;
    // &lt;br /&gt;
    this.btnRenderToOtherButton.Location = new System.Drawing.Point(168, 8);&lt;br /&gt;
    this.btnRenderToOtherButton.Name = &amp;quot;btnRenderToOtherButton&amp;quot;;&lt;br /&gt;
    this.btnRenderToOtherButton.Size = new System.Drawing.Size(112, 56);&lt;br /&gt;
    this.btnRenderToOtherButton.TabIndex = 1;&lt;br /&gt;
    this.btnRenderToOtherButton.Text = &amp;quot;Render to button&amp;quot;;&lt;br /&gt;
    // &lt;br /&gt;
    // FormBasicPaintMouseClick&lt;br /&gt;
    // &lt;br /&gt;
    this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);&lt;br /&gt;
    this.ClientSize = new System.Drawing.Size(292, 273);&lt;br /&gt;
    this.Controls.Add(this.btnRenderToOtherButton);&lt;br /&gt;
    this.Controls.Add(this.btnRenderedButton);&lt;br /&gt;
    this.Name = &amp;quot;FormBasicPaintMouseClick&amp;quot;;&lt;br /&gt;
    this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;&lt;br /&gt;
    this.Text = &amp;quot;Basic Paint Form&amp;quot;;&lt;br /&gt;
    this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.FormBasicPaintMouseClick_MouseDown);&lt;br /&gt;
    this.Paint += new System.Windows.Forms.PaintEventHandler(this.FormBasicPaintMouseClick_Paint);&lt;br /&gt;
    this.ResumeLayout(false);&lt;br /&gt;
  }&lt;br /&gt;
  [STAThread]&lt;br /&gt;
  static void Main() &lt;br /&gt;
  {&lt;br /&gt;
    Application.Run(new FormBasicPaintMouseClick());&lt;br /&gt;
  }&lt;br /&gt;
  private void FormBasicPaintMouseClick_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)&lt;br /&gt;
  {&lt;br /&gt;
    myPts.Add(new Point(e.X, e.Y));&lt;br /&gt;
    Invalidate();&lt;br /&gt;
  }&lt;br /&gt;
  private void FormBasicPaintMouseClick_Paint(object sender, System.Windows.Forms.PaintEventArgs e)&lt;br /&gt;
  {&lt;br /&gt;
    Graphics g = e.Graphics;&lt;br /&gt;
    foreach(Point p in myPts)&lt;br /&gt;
      g.DrawEllipse(new Pen(Color.Green), p.X, p.Y, 10, 10);&lt;br /&gt;
  }&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>