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

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp/Windows/Clipboard&amp;diff=1099&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/Windows/Clipboard&amp;diff=1099&amp;oldid=prev"/>
				<updated>2010-05-26T15:31:19Z</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/Windows/Clipboard&amp;diff=1100&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/Windows/Clipboard&amp;diff=1100&amp;oldid=prev"/>
				<updated>2010-05-26T11:43:01Z</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;==Copy Image to Clipboard==&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;
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;
using System.IO;&lt;br /&gt;
using System.Drawing.Text;&lt;br /&gt;
public class Form1 : Form&lt;br /&gt;
{&lt;br /&gt;
    private System.Windows.Forms.RichTextBox richTextBox1;&lt;br /&gt;
    private System.Windows.Forms.ToolStrip toolStrip1;&lt;br /&gt;
    private System.Windows.Forms.ToolStripButton cmdUnderline;&lt;br /&gt;
    private System.Windows.Forms.ToolStripButton cmdBold;&lt;br /&gt;
    private System.Windows.Forms.ToolStripButton cmdItalic;&lt;br /&gt;
    private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;&lt;br /&gt;
    private System.Windows.Forms.ToolStripDropDownButton lstColors;&lt;br /&gt;
    private System.Windows.Forms.ToolStripDropDownButton lstFonts;&lt;br /&gt;
    private System.Windows.Forms.ToolStripDropDownButton lstZoom;&lt;br /&gt;
    private System.Windows.Forms.ToolStripDropDownButton lstFontSize;&lt;br /&gt;
    private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;&lt;br /&gt;
    private System.Windows.Forms.Button cmdAddImage;&lt;br /&gt;
  public Form1() {&lt;br /&gt;
        InitializeComponent();&lt;br /&gt;
  }&lt;br /&gt;
    private void richTextBox1_SelectionChanged(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        if (richTextBox1.SelectionFont != null)&lt;br /&gt;
        {&lt;br /&gt;
            cmdBold.Checked = richTextBox1.SelectionFont.Bold;&lt;br /&gt;
            cmdItalic.Checked = richTextBox1.SelectionFont.Italic;&lt;br /&gt;
            cmdUnderline.Checked = richTextBox1.SelectionFont.Underline;&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
    private void cmdBold_Click(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        if (richTextBox1.SelectionFont == null)&lt;br /&gt;
        {&lt;br /&gt;
            return;&lt;br /&gt;
        }&lt;br /&gt;
        FontStyle style = richTextBox1.SelectionFont.Style;&lt;br /&gt;
        &lt;br /&gt;
        if (richTextBox1.SelectionFont.Bold)&lt;br /&gt;
        {&lt;br /&gt;
            style &amp;amp;= ~FontStyle.Bold;&lt;br /&gt;
        }&lt;br /&gt;
        else&lt;br /&gt;
        {&lt;br /&gt;
            style |= FontStyle.Bold;&lt;br /&gt;
            &lt;br /&gt;
        }&lt;br /&gt;
        richTextBox1.SelectionFont = new Font(richTextBox1.SelectionFont, style);&lt;br /&gt;
    }&lt;br /&gt;
    private void cmdItalic_Click(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        if (richTextBox1.SelectionFont == null)&lt;br /&gt;
        {&lt;br /&gt;
            return;&lt;br /&gt;
        }&lt;br /&gt;
        FontStyle style = richTextBox1.SelectionFont.Style;&lt;br /&gt;
        if (richTextBox1.SelectionFont.Italic)&lt;br /&gt;
        {&lt;br /&gt;
            style &amp;amp;= ~FontStyle.Italic;&lt;br /&gt;
        }&lt;br /&gt;
        else&lt;br /&gt;
        {&lt;br /&gt;
            style |= FontStyle.Italic;&lt;br /&gt;
        }&lt;br /&gt;
        richTextBox1.SelectionFont = new Font(richTextBox1.SelectionFont, style);&lt;br /&gt;
    }&lt;br /&gt;
    private void cmdUnderline_Click(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        if (richTextBox1.SelectionFont == null)&lt;br /&gt;
        {&lt;br /&gt;
            return;&lt;br /&gt;
        }&lt;br /&gt;
        FontStyle style = richTextBox1.SelectionFont.Style;&lt;br /&gt;
        if (richTextBox1.SelectionFont.Underline)&lt;br /&gt;
        {&lt;br /&gt;
            style &amp;amp;= ~FontStyle.Underline;&lt;br /&gt;
        }&lt;br /&gt;
        else&lt;br /&gt;
        {&lt;br /&gt;
            style |= FontStyle.Underline;&lt;br /&gt;
        }&lt;br /&gt;
        richTextBox1.SelectionFont = new Font(richTextBox1.SelectionFont, style);&lt;br /&gt;
    }&lt;br /&gt;
    private void Form1_Load(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        lstColors.DropDown.Items.Add(&amp;quot;Red&amp;quot;);&lt;br /&gt;
        lstColors.DropDown.Items.Add(&amp;quot;Blue&amp;quot;);&lt;br /&gt;
        &lt;br /&gt;
        InstalledFontCollection fonts = new InstalledFontCollection();&lt;br /&gt;
        foreach (FontFamily family in fonts.Families)&lt;br /&gt;
        {&lt;br /&gt;
            lstFonts.DropDown.Items.Add(family.Name);&lt;br /&gt;
        }&lt;br /&gt;
        lstZoom.DropDown.Items.Add(&amp;quot;300%&amp;quot;);             &lt;br /&gt;
        lstZoom.DropDown.Items.Add(&amp;quot;200%&amp;quot;);             &lt;br /&gt;
        lstZoom.DropDown.Items.Add(&amp;quot;100%&amp;quot;);             &lt;br /&gt;
        lstFontSize.DropDown.Items.Add(&amp;quot;8&amp;quot;);&lt;br /&gt;
        lstFontSize.DropDown.Items.Add(&amp;quot;10&amp;quot;);&lt;br /&gt;
        lstFontSize.DropDown.Items.Add(&amp;quot;12&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
   &lt;br /&gt;
    private void lstColors_DropDownItemClicked(object sender, ToolStripItemClickedEventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        &lt;br /&gt;
      KnownColor selectedColor;&lt;br /&gt;
      selectedColor = (KnownColor)System.Enum.Parse(typeof(KnownColor), e.ClickedItem.Text);&lt;br /&gt;
        richTextBox1.SelectionColor = Color.FromKnownColor(selectedColor);&lt;br /&gt;
    }&lt;br /&gt;
    private void lstFonts_DropDownItemClicked(object sender, ToolStripItemClickedEventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        if (richTextBox1.SelectionFont == null)&lt;br /&gt;
        {&lt;br /&gt;
            richTextBox1.SelectionFont = new Font(e.ClickedItem.Text, richTextBox1.Font.Size);&lt;br /&gt;
        }&lt;br /&gt;
        richTextBox1.SelectionFont = new Font(e.ClickedItem.Text, richTextBox1.SelectionFont.Size);&lt;br /&gt;
    }&lt;br /&gt;
    private void lstZoom_DropDownItemClicked(object sender, ToolStripItemClickedEventArgs e)&lt;br /&gt;
    {            &lt;br /&gt;
        float zoomPercent = Convert.ToSingle(e.ClickedItem.Text.Trim(&amp;quot;%&amp;quot;));&lt;br /&gt;
        richTextBox1.ZoomFactor = zoomPercent / 100;&lt;br /&gt;
    }&lt;br /&gt;
    private void lstFontSize_DropDownItemClicked(object sender, ToolStripItemClickedEventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
        if (richTextBox1.SelectionFont == null)&lt;br /&gt;
        {&lt;br /&gt;
            return;&lt;br /&gt;
        }&lt;br /&gt;
        richTextBox1.SelectionFont =new Font(richTextBox1.SelectionFont.FontFamily,&lt;br /&gt;
            Convert.ToInt32(e.ClickedItem.Text),&lt;br /&gt;
            richTextBox1.SelectionFont.Style);&lt;br /&gt;
    }&lt;br /&gt;
     private void cmdAddImage_Click(object sender, EventArgs e)&lt;br /&gt;
    {&lt;br /&gt;
         Image img = Image.FromFile(&amp;quot;winter.jpg&amp;quot;);&lt;br /&gt;
         Clipboard.SetImage(img);&lt;br /&gt;
         &lt;br /&gt;
         richTextBox1.SelectionStart = 0;&lt;br /&gt;
         richTextBox1.Paste();&lt;br /&gt;
         Clipboard.Clear();&lt;br /&gt;
    }&lt;br /&gt;
    private void InitializeComponent()&lt;br /&gt;
    {&lt;br /&gt;
        this.richTextBox1 = new System.Windows.Forms.RichTextBox();&lt;br /&gt;
        this.toolStrip1 = new System.Windows.Forms.ToolStrip();&lt;br /&gt;
        this.cmdBold = new System.Windows.Forms.ToolStripButton();&lt;br /&gt;
        this.cmdItalic = new System.Windows.Forms.ToolStripButton();&lt;br /&gt;
        this.cmdUnderline = new System.Windows.Forms.ToolStripButton();&lt;br /&gt;
        this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();&lt;br /&gt;
        this.lstColors = new System.Windows.Forms.ToolStripDropDownButton();&lt;br /&gt;
        this.lstFonts = new System.Windows.Forms.ToolStripDropDownButton();&lt;br /&gt;
        this.lstFontSize = new System.Windows.Forms.ToolStripDropDownButton();&lt;br /&gt;
        this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();&lt;br /&gt;
        this.lstZoom = new System.Windows.Forms.ToolStripDropDownButton();&lt;br /&gt;
        this.cmdAddImage = new System.Windows.Forms.Button();&lt;br /&gt;
        this.toolStrip1.SuspendLayout();&lt;br /&gt;
        this.SuspendLayout();&lt;br /&gt;
        // &lt;br /&gt;
        // richTextBox1&lt;br /&gt;
        // &lt;br /&gt;
        this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)&lt;br /&gt;
                    | System.Windows.Forms.AnchorStyles.Left)&lt;br /&gt;
                    | System.Windows.Forms.AnchorStyles.Right)));&lt;br /&gt;
        this.richTextBox1.BulletIndent = 5;&lt;br /&gt;
        this.richTextBox1.Location = new System.Drawing.Point(12, 37);&lt;br /&gt;
        this.richTextBox1.Margin = new System.Windows.Forms.Padding(5);&lt;br /&gt;
        this.richTextBox1.Name = &amp;quot;richTextBox1&amp;quot;;&lt;br /&gt;
        this.richTextBox1.Size = new System.Drawing.Size(317, 197);&lt;br /&gt;
        this.richTextBox1.TabIndex = 0;&lt;br /&gt;
        this.richTextBox1.Text = &amp;quot;adfasdf&amp;quot;;&lt;br /&gt;
        this.richTextBox1.SelectionChanged += new System.EventHandler(this.richTextBox1_SelectionChanged);&lt;br /&gt;
        // &lt;br /&gt;
        // toolStrip1&lt;br /&gt;
        // &lt;br /&gt;
        this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {&lt;br /&gt;
        this.cmdBold,&lt;br /&gt;
        this.cmdItalic,&lt;br /&gt;
        this.cmdUnderline,&lt;br /&gt;
        this.toolStripSeparator1,&lt;br /&gt;
        this.lstColors,&lt;br /&gt;
        this.lstFonts,&lt;br /&gt;
        this.lstFontSize,&lt;br /&gt;
        this.toolStripSeparator2,&lt;br /&gt;
        this.lstZoom});&lt;br /&gt;
        this.toolStrip1.Location = new System.Drawing.Point(0, 0);&lt;br /&gt;
        this.toolStrip1.Name = &amp;quot;toolStrip1&amp;quot;;&lt;br /&gt;
        this.toolStrip1.Size = new System.Drawing.Size(341, 25);&lt;br /&gt;
        this.toolStrip1.TabIndex = 1;&lt;br /&gt;
        this.toolStrip1.Text = &amp;quot;toolStrip1&amp;quot;;&lt;br /&gt;
        // &lt;br /&gt;
        // cmdBold&lt;br /&gt;
        // &lt;br /&gt;
        this.cmdBold.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;&lt;br /&gt;
        this.cmdBold.ImageTransparentColor = System.Drawing.Color.Magenta;&lt;br /&gt;
        this.cmdBold.Name = &amp;quot;cmdBold&amp;quot;;&lt;br /&gt;
        this.cmdBold.Size = new System.Drawing.Size(31, 22);&lt;br /&gt;
        this.cmdBold.Text = &amp;quot;Bold&amp;quot;;&lt;br /&gt;
        this.cmdBold.Click += new System.EventHandler(this.cmdBold_Click);&lt;br /&gt;
        // &lt;br /&gt;
        // cmdItalic&lt;br /&gt;
        // &lt;br /&gt;
        this.cmdItalic.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;&lt;br /&gt;
        this.cmdItalic.ImageTransparentColor = System.Drawing.Color.Magenta;&lt;br /&gt;
        this.cmdItalic.Name = &amp;quot;cmdItalic&amp;quot;;&lt;br /&gt;
        this.cmdItalic.Size = new System.Drawing.Size(34, 22);&lt;br /&gt;
        this.cmdItalic.Text = &amp;quot;Italic&amp;quot;;&lt;br /&gt;
        this.cmdItalic.Click += new System.EventHandler(this.cmdItalic_Click);&lt;br /&gt;
        // &lt;br /&gt;
        // cmdUnderline&lt;br /&gt;
        // &lt;br /&gt;
        this.cmdUnderline.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;&lt;br /&gt;
        this.cmdUnderline.ImageTransparentColor = System.Drawing.Color.Magenta;&lt;br /&gt;
        this.cmdUnderline.Name = &amp;quot;cmdUnderline&amp;quot;;&lt;br /&gt;
        this.cmdUnderline.Size = new System.Drawing.Size(56, 22);&lt;br /&gt;
        this.cmdUnderline.Text = &amp;quot;Underline&amp;quot;;&lt;br /&gt;
        this.cmdUnderline.Click += new System.EventHandler(this.cmdUnderline_Click);&lt;br /&gt;
        // &lt;br /&gt;
        // toolStripSeparator1&lt;br /&gt;
        // &lt;br /&gt;
        this.toolStripSeparator1.Name = &amp;quot;toolStripSeparator1&amp;quot;;&lt;br /&gt;
        this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);&lt;br /&gt;
        // &lt;br /&gt;
        // lstColors&lt;br /&gt;
        // &lt;br /&gt;
        this.lstColors.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;&lt;br /&gt;
        this.lstColors.ImageTransparentColor = System.Drawing.Color.Magenta;&lt;br /&gt;
        this.lstColors.Name = &amp;quot;lstColors&amp;quot;;&lt;br /&gt;
        this.lstColors.Size = new System.Drawing.Size(45, 22);&lt;br /&gt;
        this.lstColors.Text = &amp;quot;Color&amp;quot;;&lt;br /&gt;
        this.lstColors.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.lstColors_DropDownItemClicked);&lt;br /&gt;
        // &lt;br /&gt;
        // lstFonts&lt;br /&gt;
        // &lt;br /&gt;
        this.lstFonts.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;&lt;br /&gt;
        this.lstFonts.ImageTransparentColor = System.Drawing.Color.Magenta;&lt;br /&gt;
        this.lstFonts.Name = &amp;quot;lstFonts&amp;quot;;&lt;br /&gt;
        this.lstFonts.Size = new System.Drawing.Size(42, 22);&lt;br /&gt;
        this.lstFonts.Text = &amp;quot;Font&amp;quot;;&lt;br /&gt;
        this.lstFonts.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.lstFonts_DropDownItemClicked);&lt;br /&gt;
        // &lt;br /&gt;
        // lstFontSize&lt;br /&gt;
        // &lt;br /&gt;
        this.lstFontSize.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;&lt;br /&gt;
        this.lstFontSize.ImageTransparentColor = System.Drawing.Color.Magenta;&lt;br /&gt;
        this.lstFontSize.Name = &amp;quot;lstFontSize&amp;quot;;&lt;br /&gt;
        this.lstFontSize.Size = new System.Drawing.Size(39, 22);&lt;br /&gt;
        this.lstFontSize.Text = &amp;quot;Size&amp;quot;;&lt;br /&gt;
        this.lstFontSize.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.lstFontSize_DropDownItemClicked);&lt;br /&gt;
        // &lt;br /&gt;
        // toolStripSeparator2&lt;br /&gt;
        // &lt;br /&gt;
        this.toolStripSeparator2.Name = &amp;quot;toolStripSeparator2&amp;quot;;&lt;br /&gt;
        this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);&lt;br /&gt;
        // &lt;br /&gt;
        // lstZoom&lt;br /&gt;
        // &lt;br /&gt;
        this.lstZoom.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;&lt;br /&gt;
        this.lstZoom.ImageTransparentColor = System.Drawing.Color.Magenta;&lt;br /&gt;
        this.lstZoom.Name = &amp;quot;lstZoom&amp;quot;;&lt;br /&gt;
        this.lstZoom.Size = new System.Drawing.Size(46, 22);&lt;br /&gt;
        this.lstZoom.Text = &amp;quot;Zoom&amp;quot;;&lt;br /&gt;
        this.lstZoom.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.lstZoom_DropDownItemClicked);&lt;br /&gt;
        // &lt;br /&gt;
        // cmdAddImage&lt;br /&gt;
        // &lt;br /&gt;
        this.cmdAddImage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));&lt;br /&gt;
        this.cmdAddImage.Location = new System.Drawing.Point(12, 237);&lt;br /&gt;
        this.cmdAddImage.Name = &amp;quot;cmdAddImage&amp;quot;;&lt;br /&gt;
        this.cmdAddImage.Size = new System.Drawing.Size(154, 23);&lt;br /&gt;
        this.cmdAddImage.TabIndex = 2;&lt;br /&gt;
        this.cmdAddImage.Text = &amp;quot;Insert Image&amp;quot;;&lt;br /&gt;
        this.cmdAddImage.UseVisualStyleBackColor = true;&lt;br /&gt;
        this.cmdAddImage.Click += new System.EventHandler(this.cmdAddImage_Click);&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(341, 266);&lt;br /&gt;
        this.Controls.Add(this.cmdAddImage);&lt;br /&gt;
        this.Controls.Add(this.toolStrip1);&lt;br /&gt;
        this.Controls.Add(this.richTextBox1);&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.Name = &amp;quot;Form1&amp;quot;;&lt;br /&gt;
        this.Text = &amp;quot;RichTextBox Test&amp;quot;;&lt;br /&gt;
        this.Load += new System.EventHandler(this.Form1_Load);&lt;br /&gt;
        this.toolStrip1.ResumeLayout(false);&lt;br /&gt;
        this.toolStrip1.PerformLayout();&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;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>