<?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_by_API%2FSystem.Windows.Forms%2FStatusStrip</id>
		<title>Csharp/C Sharp by API/System.Windows.Forms/StatusStrip - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp_by_API%2FSystem.Windows.Forms%2FStatusStrip"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System.Windows.Forms/StatusStrip&amp;action=history"/>
		<updated>2026-04-30T14:59:46Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System.Windows.Forms/StatusStrip&amp;diff=4188&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_by_API/System.Windows.Forms/StatusStrip&amp;diff=4188&amp;oldid=prev"/>
				<updated>2010-05-26T15:31:35Z</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_by_API/System.Windows.Forms/StatusStrip&amp;diff=4189&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp_by_API/System.Windows.Forms/StatusStrip&amp;diff=4189&amp;oldid=prev"/>
				<updated>2010-05-26T12:09: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;==StatusStrip.Items==&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;
using System;&lt;br /&gt;
using System.Collections.Generic;&lt;br /&gt;
using System.ruponentModel;&lt;br /&gt;
using System.Data;&lt;br /&gt;
using System.Drawing;&lt;br /&gt;
using System.Text;&lt;br /&gt;
using System.Windows.Forms;&lt;br /&gt;
public class Form1 : Form&lt;br /&gt;
{&lt;br /&gt;
  private System.Windows.Forms.GroupBox groupBox1;&lt;br /&gt;
  private System.Windows.Forms.ruboBox lstFonts;&lt;br /&gt;
  private System.Windows.Forms.Label label1;&lt;br /&gt;
  private System.Windows.Forms.StatusStrip statusBar;&lt;br /&gt;
  private System.Windows.Forms.ToolStripStatusLabel statusLabel;&lt;br /&gt;
  public Form1() {&lt;br /&gt;
        InitializeComponent();&lt;br /&gt;
    System.Drawing.Text.InstalledFontCollection fonts = new System.Drawing.Text.InstalledFontCollection();&lt;br /&gt;
    foreach (FontFamily family in fonts.Families)&lt;br /&gt;
    {&lt;br /&gt;
      lstFonts.Items.Add(family.Name);&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
  private void lstFonts_SelectedIndexChanged(object sender, EventArgs e)&lt;br /&gt;
  {&lt;br /&gt;
        this.Invalidate();&lt;br /&gt;
  }&lt;br /&gt;
  private void Form1_Paint(object sender, PaintEventArgs e)&lt;br /&gt;
  {&lt;br /&gt;
    if (lstFonts.SelectedIndex != -1)&lt;br /&gt;
    {&lt;br /&gt;
            e.Graphics.DrawString(lstFonts.Text, new Font(lstFonts.Text, 50), Brushes.Black, 10, 50);&lt;br /&gt;
            statusBar.Items[0].Text = lstFonts.Text;&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
  private void InitializeComponent()&lt;br /&gt;
  {&lt;br /&gt;
    this.groupBox1 = new System.Windows.Forms.GroupBox();&lt;br /&gt;
    this.lstFonts = new System.Windows.Forms.ruboBox();&lt;br /&gt;
    this.label1 = new System.Windows.Forms.Label();&lt;br /&gt;
    this.statusBar = new System.Windows.Forms.StatusStrip();&lt;br /&gt;
    this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel();&lt;br /&gt;
    this.groupBox1.SuspendLayout();&lt;br /&gt;
    this.statusBar.SuspendLayout();&lt;br /&gt;
    this.SuspendLayout();&lt;br /&gt;
    // &lt;br /&gt;
    // groupBox1&lt;br /&gt;
    // &lt;br /&gt;
    this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)&lt;br /&gt;
          | System.Windows.Forms.AnchorStyles.Right)));&lt;br /&gt;
    this.groupBox1.Controls.Add(this.lstFonts);&lt;br /&gt;
    this.groupBox1.Controls.Add(this.label1);&lt;br /&gt;
    this.groupBox1.Location = new System.Drawing.Point(7, 0);&lt;br /&gt;
    this.groupBox1.Name = &amp;quot;groupBox1&amp;quot;;&lt;br /&gt;
    this.groupBox1.Size = new System.Drawing.Size(497, 40);&lt;br /&gt;
    this.groupBox1.TabIndex = 1;&lt;br /&gt;
    this.groupBox1.TabStop = false;&lt;br /&gt;
    // &lt;br /&gt;
    // lstFonts&lt;br /&gt;
    // &lt;br /&gt;
    this.lstFonts.DropDownStyle = System.Windows.Forms.ruboBoxStyle.DropDownList;&lt;br /&gt;
    this.lstFonts.DropDownWidth = 340;&lt;br /&gt;
    this.lstFonts.FormattingEnabled = true;&lt;br /&gt;
    this.lstFonts.Location = new System.Drawing.Point(100, 12);&lt;br /&gt;
    this.lstFonts.Name = &amp;quot;lstFonts&amp;quot;;&lt;br /&gt;
    this.lstFonts.Size = new System.Drawing.Size(340, 21);&lt;br /&gt;
    this.lstFonts.TabIndex = 1;&lt;br /&gt;
    this.lstFonts.SelectedIndexChanged += new System.EventHandler(this.lstFonts_SelectedIndexChanged);&lt;br /&gt;
    // &lt;br /&gt;
    // label1&lt;br /&gt;
    // &lt;br /&gt;
    this.label1.Location = new System.Drawing.Point(12, 16);&lt;br /&gt;
    this.label1.Name = &amp;quot;label1&amp;quot;;&lt;br /&gt;
    this.label1.Size = new System.Drawing.Size(80, 12);&lt;br /&gt;
    this.label1.TabIndex = 0;&lt;br /&gt;
    this.label1.Text = &amp;quot;Choose Font:&amp;quot;;&lt;br /&gt;
    // &lt;br /&gt;
    // statusBar&lt;br /&gt;
    // &lt;br /&gt;
    this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {&lt;br /&gt;
        this.statusLabel});&lt;br /&gt;
    this.statusBar.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Table;&lt;br /&gt;
    this.statusBar.Location = new System.Drawing.Point(0, 155);&lt;br /&gt;
    this.statusBar.Name = &amp;quot;statusBar&amp;quot;;&lt;br /&gt;
    this.statusBar.Size = new System.Drawing.Size(516, 22);&lt;br /&gt;
    this.statusBar.TabIndex = 2;&lt;br /&gt;
    this.statusBar.Text = &amp;quot;statusStrip1&amp;quot;;&lt;br /&gt;
    // &lt;br /&gt;
    // statusLabel&lt;br /&gt;
    // &lt;br /&gt;
    this.statusLabel.Name = &amp;quot;statusLabel&amp;quot;;&lt;br /&gt;
    // &lt;br /&gt;
    // Form1&lt;br /&gt;
    // &lt;br /&gt;
    this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);&lt;br /&gt;
    this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;&lt;br /&gt;
    this.ClientSize = new System.Drawing.Size(516, 177);&lt;br /&gt;
    this.Controls.Add(this.groupBox1);&lt;br /&gt;
    this.Controls.Add(this.statusBar);&lt;br /&gt;
    this.Font = new System.Drawing.Font(&amp;quot;Tahoma&amp;quot;, 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));&lt;br /&gt;
    this.Text = &amp;quot;Font Viewer&amp;quot;;&lt;br /&gt;
    this.groupBox1.ResumeLayout(false);&lt;br /&gt;
    this.statusBar.ResumeLayout(false);&lt;br /&gt;
    this.ResumeLayout(false);&lt;br /&gt;
    this.PerformLayout();&lt;br /&gt;
  }&lt;br /&gt;
  [STAThread]&lt;br /&gt;
  static void Main()&lt;br /&gt;
  {&lt;br /&gt;
    Application.EnableVisualStyles();&lt;br /&gt;
    Application.Run(new Form1());&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>