<?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%2FC_Sharp%2FComponents%2FAboutBox</id>
		<title>Csharp/C Sharp/Components/AboutBox - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp%2FComponents%2FAboutBox"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/Components/AboutBox&amp;action=history"/>
		<updated>2026-04-30T03:43:33Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp/Components/AboutBox&amp;diff=338&amp;oldid=prev</id>
		<title> в 15:31, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/Components/AboutBox&amp;diff=338&amp;oldid=prev"/>
				<updated>2010-05-26T15:31:18Z</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/C_Sharp/Components/AboutBox&amp;diff=339&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/Components/AboutBox&amp;diff=339&amp;oldid=prev"/>
				<updated>2010-05-26T11:38:07Z</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;==Create an AboutBox==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    using System;&lt;br /&gt;
    using System.Windows.Forms;&lt;br /&gt;
    using System.Drawing;&lt;br /&gt;
  public class AboutBox : Form {&lt;br /&gt;
    public String Author=&amp;quot;nfex&amp;quot;;&lt;br /&gt;
    public String AppName = &amp;quot;about dialog&amp;quot;;&lt;br /&gt;
    public String Version = &amp;quot;1.0&amp;quot;;&lt;br /&gt;
    public AboutBox ()&lt;br /&gt;
    {&lt;br /&gt;
      InitDialog ();&lt;br /&gt;
    }&lt;br /&gt;
    private void InitDialog ()&lt;br /&gt;
    {&lt;br /&gt;
      this.ClientSize = new Size (250, 140);&lt;br /&gt;
      this.Text = &amp;quot;About&amp;quot;;&lt;br /&gt;
      this.FormBorderStyle  = FormBorderStyle.FixedDialog;&lt;br /&gt;
      this.ControlBox    = false;&lt;br /&gt;
      this.MinimizeBox  = false;&lt;br /&gt;
      this.MaximizeBox  = false;&lt;br /&gt;
      Button wndClose = new Button ();&lt;br /&gt;
      wndClose.Text = &amp;quot;OK&amp;quot;;&lt;br /&gt;
      wndClose.Location = new Point (90, 100);&lt;br /&gt;
      wndClose.Size = new Size (72, 24);&lt;br /&gt;
      wndClose.Click += new EventHandler (About_OK);&lt;br /&gt;
      Label wndAuthorLabel = new Label ();&lt;br /&gt;
      wndAuthorLabel.Text = &amp;quot;Author:&amp;quot;;&lt;br /&gt;
      wndAuthorLabel.Location = new Point (5, 5);&lt;br /&gt;
      wndAuthorLabel.Size = new Size (72, 24);&lt;br /&gt;
      Label wndAuthor = new Label ();&lt;br /&gt;
      wndAuthor.Text = Author;&lt;br /&gt;
      wndAuthor.Location = new Point (80, 5);&lt;br /&gt;
      wndAuthor.Size = new Size (80, 24);&lt;br /&gt;
      Label wndProdNameLabel = new Label ();&lt;br /&gt;
      wndProdNameLabel.Text = &amp;quot;Product:&amp;quot;;&lt;br /&gt;
      wndProdNameLabel.Location = new Point (5, 30);&lt;br /&gt;
      wndProdNameLabel.Size = new Size (72, 24);&lt;br /&gt;
      Label wndProdName = new Label ();&lt;br /&gt;
      wndProdName.Text = AppName;&lt;br /&gt;
      wndProdName.Location = new Point (80, 30);&lt;br /&gt;
      wndProdName.Size = new Size (120, 24);&lt;br /&gt;
      Label wndVersionLabel = new Label ();&lt;br /&gt;
      wndVersionLabel.Text = &amp;quot;Version:&amp;quot;;&lt;br /&gt;
      wndVersionLabel.Location = new Point (5, 55);&lt;br /&gt;
      wndVersionLabel.Size = new Size (72, 24);&lt;br /&gt;
      Label wndVersion = new Label ();&lt;br /&gt;
      wndVersion.Text = Version;&lt;br /&gt;
      wndVersion.Location = new Point (80, 55);&lt;br /&gt;
      wndVersion.Size = new Size (72, 24);&lt;br /&gt;
      this.Controls.AddRange( new Control [] {&lt;br /&gt;
                        wndClose,&lt;br /&gt;
                        wndAuthorLabel,&lt;br /&gt;
                        wndProdNameLabel,&lt;br /&gt;
                        wndVersionLabel,&lt;br /&gt;
                        wndAuthor,&lt;br /&gt;
                        wndProdName,&lt;br /&gt;
                        wndVersion&lt;br /&gt;
                        });&lt;br /&gt;
      this.StartPosition = FormStartPosition.CenterParent;&lt;br /&gt;
      this.ShowDialog ();&lt;br /&gt;
    }&lt;br /&gt;
    private void About_OK (Object source, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
      Control wndCtrl = ((Button)source).Parent;&lt;br /&gt;
      ((Form)wndCtrl).Close ();&lt;br /&gt;
    }&lt;br /&gt;
    public static void Main(){&lt;br /&gt;
      new AboutBox();&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>