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

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp/GUI_Windows_Form/Scrollable&amp;diff=78&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/GUI_Windows_Form/Scrollable&amp;diff=78&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/GUI_Windows_Form/Scrollable&amp;diff=79&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/GUI_Windows_Form/Scrollable&amp;diff=79&amp;oldid=prev"/>
				<updated>2010-05-26T11:32:56Z</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;==Scrollable Form==&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;
User Interfaces in C#: Windows Forms and Custom Controls&lt;br /&gt;
by Matthew MacDonald&lt;br /&gt;
Publisher: Apress&lt;br /&gt;
ISBN: 1590590457&lt;br /&gt;
*/&lt;br /&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;
namespace UnsualScrolling&lt;br /&gt;
{&lt;br /&gt;
    /// &amp;lt;summary&amp;gt;&lt;br /&gt;
    /// Summary description for Form1.&lt;br /&gt;
    /// &amp;lt;/summary&amp;gt;&lt;br /&gt;
    public class ScrollableForm : System.Windows.Forms.Form&lt;br /&gt;
    {&lt;br /&gt;
        internal System.Windows.Forms.Panel Panel1;&lt;br /&gt;
        internal System.Windows.Forms.Button Button6;&lt;br /&gt;
        internal System.Windows.Forms.Button Button5;&lt;br /&gt;
        internal System.Windows.Forms.Button Button4;&lt;br /&gt;
        internal System.Windows.Forms.Button Button3;&lt;br /&gt;
        internal System.Windows.Forms.Button Button2;&lt;br /&gt;
        internal System.Windows.Forms.Button Button1;&lt;br /&gt;
        /// &amp;lt;summary&amp;gt;&lt;br /&gt;
        /// Required designer variable.&lt;br /&gt;
        /// &amp;lt;/summary&amp;gt;&lt;br /&gt;
        private System.ruponentModel.Container components = null;&lt;br /&gt;
        public ScrollableForm()&lt;br /&gt;
        {&lt;br /&gt;
            //&lt;br /&gt;
            // Required for Windows Form Designer support&lt;br /&gt;
            //&lt;br /&gt;
            InitializeComponent();&lt;br /&gt;
            //&lt;br /&gt;
            // TODO: Add any constructor code after InitializeComponent call&lt;br /&gt;
            //&lt;br /&gt;
        }&lt;br /&gt;
        /// &amp;lt;summary&amp;gt;&lt;br /&gt;
        /// Clean up any resources being used.&lt;br /&gt;
        /// &amp;lt;/summary&amp;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;
        #region Windows Form Designer generated code&lt;br /&gt;
        /// &amp;lt;summary&amp;gt;&lt;br /&gt;
        /// Required method for Designer support - do not modify&lt;br /&gt;
        /// the contents of this method with the code editor.&lt;br /&gt;
        /// &amp;lt;/summary&amp;gt;&lt;br /&gt;
        private void InitializeComponent()&lt;br /&gt;
        {&lt;br /&gt;
            this.Panel1 = new System.Windows.Forms.Panel();&lt;br /&gt;
            this.Button6 = new System.Windows.Forms.Button();&lt;br /&gt;
            this.Button5 = new System.Windows.Forms.Button();&lt;br /&gt;
            this.Button4 = new System.Windows.Forms.Button();&lt;br /&gt;
            this.Button3 = new System.Windows.Forms.Button();&lt;br /&gt;
            this.Button2 = new System.Windows.Forms.Button();&lt;br /&gt;
            this.Button1 = new System.Windows.Forms.Button();&lt;br /&gt;
            this.Panel1.SuspendLayout();&lt;br /&gt;
            this.SuspendLayout();&lt;br /&gt;
            // &lt;br /&gt;
            // Panel1&lt;br /&gt;
            // &lt;br /&gt;
            this.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;&lt;br /&gt;
            this.Panel1.Controls.AddRange(new System.Windows.Forms.Control[] {&lt;br /&gt;
                                                                                 this.Button6,&lt;br /&gt;
                                                                                 this.Button5,&lt;br /&gt;
                                                                                 this.Button4,&lt;br /&gt;
                                                                                 this.Button3,&lt;br /&gt;
                                                                                 this.Button2,&lt;br /&gt;
                                                                                 this.Button1});&lt;br /&gt;
            this.Panel1.Location = new System.Drawing.Point(16, 17);&lt;br /&gt;
            this.Panel1.Name = &amp;quot;Panel1&amp;quot;;&lt;br /&gt;
            this.Panel1.Size = new System.Drawing.Size(260, 232);&lt;br /&gt;
            this.Panel1.TabIndex = 1;&lt;br /&gt;
            // &lt;br /&gt;
            // Button6&lt;br /&gt;
            // &lt;br /&gt;
            this.Button6.FlatStyle = System.Windows.Forms.FlatStyle.System;&lt;br /&gt;
            this.Button6.Location = new System.Drawing.Point(16, 180);&lt;br /&gt;
            this.Button6.Name = &amp;quot;Button6&amp;quot;;&lt;br /&gt;
            this.Button6.Size = new System.Drawing.Size(168, 24);&lt;br /&gt;
            this.Button6.TabIndex = 5;&lt;br /&gt;
            this.Button6.Text = &amp;quot;Button6&amp;quot;;&lt;br /&gt;
            // &lt;br /&gt;
            // Button5&lt;br /&gt;
            // &lt;br /&gt;
            this.Button5.FlatStyle = System.Windows.Forms.FlatStyle.System;&lt;br /&gt;
            this.Button5.Location = new System.Drawing.Point(16, 148);&lt;br /&gt;
            this.Button5.Name = &amp;quot;Button5&amp;quot;;&lt;br /&gt;
            this.Button5.Size = new System.Drawing.Size(168, 24);&lt;br /&gt;
            this.Button5.TabIndex = 4;&lt;br /&gt;
            this.Button5.Text = &amp;quot;Button5&amp;quot;;&lt;br /&gt;
            // &lt;br /&gt;
            // Button4&lt;br /&gt;
            // &lt;br /&gt;
            this.Button4.FlatStyle = System.Windows.Forms.FlatStyle.System;&lt;br /&gt;
            this.Button4.Location = new System.Drawing.Point(16, 116);&lt;br /&gt;
            this.Button4.Name = &amp;quot;Button4&amp;quot;;&lt;br /&gt;
            this.Button4.Size = new System.Drawing.Size(168, 24);&lt;br /&gt;
            this.Button4.TabIndex = 3;&lt;br /&gt;
            this.Button4.Text = &amp;quot;Button4&amp;quot;;&lt;br /&gt;
            // &lt;br /&gt;
            // Button3&lt;br /&gt;
            // &lt;br /&gt;
            this.Button3.FlatStyle = System.Windows.Forms.FlatStyle.System;&lt;br /&gt;
            this.Button3.Location = new System.Drawing.Point(16, 84);&lt;br /&gt;
            this.Button3.Name = &amp;quot;Button3&amp;quot;;&lt;br /&gt;
            this.Button3.Size = new System.Drawing.Size(168, 24);&lt;br /&gt;
            this.Button3.TabIndex = 2;&lt;br /&gt;
            this.Button3.Text = &amp;quot;Button3&amp;quot;;&lt;br /&gt;
            // &lt;br /&gt;
            // Button2&lt;br /&gt;
            // &lt;br /&gt;
            this.Button2.FlatStyle = System.Windows.Forms.FlatStyle.System;&lt;br /&gt;
            this.Button2.Location = new System.Drawing.Point(16, 52);&lt;br /&gt;
            this.Button2.Name = &amp;quot;Button2&amp;quot;;&lt;br /&gt;
            this.Button2.Size = new System.Drawing.Size(168, 24);&lt;br /&gt;
            this.Button2.TabIndex = 1;&lt;br /&gt;
            this.Button2.Text = &amp;quot;Button2&amp;quot;;&lt;br /&gt;
            // &lt;br /&gt;
            // Button1&lt;br /&gt;
            // &lt;br /&gt;
            this.Button1.FlatStyle = System.Windows.Forms.FlatStyle.System;&lt;br /&gt;
            this.Button1.Location = new System.Drawing.Point(16, 20);&lt;br /&gt;
            this.Button1.Name = &amp;quot;Button1&amp;quot;;&lt;br /&gt;
            this.Button1.Size = new System.Drawing.Size(168, 24);&lt;br /&gt;
            this.Button1.TabIndex = 0;&lt;br /&gt;
            this.Button1.Text = &amp;quot;Button1&amp;quot;;&lt;br /&gt;
            // &lt;br /&gt;
            // Form1&lt;br /&gt;
            // &lt;br /&gt;
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);&lt;br /&gt;
            this.AutoScroll = true;&lt;br /&gt;
            this.ClientSize = new System.Drawing.Size(211, 169);&lt;br /&gt;
            this.Controls.AddRange(new System.Windows.Forms.Control[] {&lt;br /&gt;
                                                                          this.Panel1});&lt;br /&gt;
            this.Font = new System.Drawing.Font(&amp;quot;Tahoma&amp;quot;, 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));&lt;br /&gt;
            this.Name = &amp;quot;Form1&amp;quot;;&lt;br /&gt;
            this.Text = &amp;quot;Scrollable Form&amp;quot;;&lt;br /&gt;
            this.Panel1.ResumeLayout(false);&lt;br /&gt;
            this.ResumeLayout(false);&lt;br /&gt;
        }&lt;br /&gt;
        #endregion&lt;br /&gt;
        /// &amp;lt;summary&amp;gt;&lt;br /&gt;
        /// The main entry point for the application.&lt;br /&gt;
        /// &amp;lt;/summary&amp;gt;&lt;br /&gt;
        [STAThread]&lt;br /&gt;
        static void Main() &lt;br /&gt;
        {&lt;br /&gt;
            Application.Run(new ScrollableForm());&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Scrollable Panel==&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;
User Interfaces in C#: Windows Forms and Custom Controls&lt;br /&gt;
by Matthew MacDonald&lt;br /&gt;
Publisher: Apress&lt;br /&gt;
ISBN: 1590590457&lt;br /&gt;
*/&lt;br /&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;
namespace UnsualScrolling&lt;br /&gt;
{&lt;br /&gt;
    /// &amp;lt;summary&amp;gt;&lt;br /&gt;
    /// Summary description for ScrollablePanel.&lt;br /&gt;
    /// &amp;lt;/summary&amp;gt;&lt;br /&gt;
    public class ScrollablePanel : System.Windows.Forms.Form&lt;br /&gt;
    {&lt;br /&gt;
        internal System.Windows.Forms.Panel Panel1;&lt;br /&gt;
        internal System.Windows.Forms.Button Button6;&lt;br /&gt;
        internal System.Windows.Forms.Button Button5;&lt;br /&gt;
        internal System.Windows.Forms.Button Button4;&lt;br /&gt;
        internal System.Windows.Forms.Button Button3;&lt;br /&gt;
        internal System.Windows.Forms.Button Button2;&lt;br /&gt;
        internal System.Windows.Forms.Button Button1;&lt;br /&gt;
        /// &amp;lt;summary&amp;gt;&lt;br /&gt;
        /// Required designer variable.&lt;br /&gt;
        /// &amp;lt;/summary&amp;gt;&lt;br /&gt;
        private System.ruponentModel.Container components = null;&lt;br /&gt;
        public ScrollablePanel()&lt;br /&gt;
        {&lt;br /&gt;
            //&lt;br /&gt;
            // Required for Windows Form Designer support&lt;br /&gt;
            //&lt;br /&gt;
            InitializeComponent();&lt;br /&gt;
            //&lt;br /&gt;
            // TODO: Add any constructor code after InitializeComponent call&lt;br /&gt;
            //&lt;br /&gt;
        }&lt;br /&gt;
        /// &amp;lt;summary&amp;gt;&lt;br /&gt;
        /// Clean up any resources being used.&lt;br /&gt;
        /// &amp;lt;/summary&amp;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;
        #region Windows Form Designer generated code&lt;br /&gt;
        /// &amp;lt;summary&amp;gt;&lt;br /&gt;
        /// Required method for Designer support - do not modify&lt;br /&gt;
        /// the contents of this method with the code editor.&lt;br /&gt;
        /// &amp;lt;/summary&amp;gt;&lt;br /&gt;
        private void InitializeComponent()&lt;br /&gt;
        {&lt;br /&gt;
            this.Panel1 = new System.Windows.Forms.Panel();&lt;br /&gt;
            this.Button6 = new System.Windows.Forms.Button();&lt;br /&gt;
            this.Button5 = new System.Windows.Forms.Button();&lt;br /&gt;
            this.Button4 = new System.Windows.Forms.Button();&lt;br /&gt;
            this.Button3 = new System.Windows.Forms.Button();&lt;br /&gt;
            this.Button2 = new System.Windows.Forms.Button();&lt;br /&gt;
            this.Button1 = new System.Windows.Forms.Button();&lt;br /&gt;
            this.Panel1.SuspendLayout();&lt;br /&gt;
            this.SuspendLayout();&lt;br /&gt;
            // &lt;br /&gt;
            // Panel1&lt;br /&gt;
            // &lt;br /&gt;
            this.Panel1.Anchor = (((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.Panel1.AutoScroll = true;&lt;br /&gt;
            this.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;&lt;br /&gt;
            this.Panel1.Controls.AddRange(new System.Windows.Forms.Control[] {&lt;br /&gt;
                                                                                 this.Button6,&lt;br /&gt;
                                                                                 this.Button5,&lt;br /&gt;
                                                                                 this.Button4,&lt;br /&gt;
                                                                                 this.Button3,&lt;br /&gt;
                                                                                 this.Button2,&lt;br /&gt;
                                                                                 this.Button1});&lt;br /&gt;
            this.Panel1.Location = new System.Drawing.Point(4, 8);&lt;br /&gt;
            this.Panel1.Name = &amp;quot;Panel1&amp;quot;;&lt;br /&gt;
            this.Panel1.Size = new System.Drawing.Size(348, 172);&lt;br /&gt;
            this.Panel1.TabIndex = 2;&lt;br /&gt;
            // &lt;br /&gt;
            // Button6&lt;br /&gt;
            // &lt;br /&gt;
            this.Button6.FlatStyle = System.Windows.Forms.FlatStyle.System;&lt;br /&gt;
            this.Button6.Location = new System.Drawing.Point(16, 180);&lt;br /&gt;
            this.Button6.Name = &amp;quot;Button6&amp;quot;;&lt;br /&gt;
            this.Button6.Size = new System.Drawing.Size(168, 24);&lt;br /&gt;
            this.Button6.TabIndex = 5;&lt;br /&gt;
            this.Button6.Text = &amp;quot;Button6&amp;quot;;&lt;br /&gt;
            // &lt;br /&gt;
            // Button5&lt;br /&gt;
            // &lt;br /&gt;
            this.Button5.FlatStyle = System.Windows.Forms.FlatStyle.System;&lt;br /&gt;
            this.Button5.Location = new System.Drawing.Point(16, 148);&lt;br /&gt;
            this.Button5.Name = &amp;quot;Button5&amp;quot;;&lt;br /&gt;
            this.Button5.Size = new System.Drawing.Size(168, 24);&lt;br /&gt;
            this.Button5.TabIndex = 4;&lt;br /&gt;
            this.Button5.Text = &amp;quot;Button5&amp;quot;;&lt;br /&gt;
            // &lt;br /&gt;
            // Button4&lt;br /&gt;
            // &lt;br /&gt;
            this.Button4.FlatStyle = System.Windows.Forms.FlatStyle.System;&lt;br /&gt;
            this.Button4.Location = new System.Drawing.Point(16, 116);&lt;br /&gt;
            this.Button4.Name = &amp;quot;Button4&amp;quot;;&lt;br /&gt;
            this.Button4.Size = new System.Drawing.Size(168, 24);&lt;br /&gt;
            this.Button4.TabIndex = 3;&lt;br /&gt;
            this.Button4.Text = &amp;quot;Button4&amp;quot;;&lt;br /&gt;
            // &lt;br /&gt;
            // Button3&lt;br /&gt;
            // &lt;br /&gt;
            this.Button3.FlatStyle = System.Windows.Forms.FlatStyle.System;&lt;br /&gt;
            this.Button3.Location = new System.Drawing.Point(16, 84);&lt;br /&gt;
            this.Button3.Name = &amp;quot;Button3&amp;quot;;&lt;br /&gt;
            this.Button3.Size = new System.Drawing.Size(168, 24);&lt;br /&gt;
            this.Button3.TabIndex = 2;&lt;br /&gt;
            this.Button3.Text = &amp;quot;Button3&amp;quot;;&lt;br /&gt;
            // &lt;br /&gt;
            // Button2&lt;br /&gt;
            // &lt;br /&gt;
            this.Button2.FlatStyle = System.Windows.Forms.FlatStyle.System;&lt;br /&gt;
            this.Button2.Location = new System.Drawing.Point(16, 52);&lt;br /&gt;
            this.Button2.Name = &amp;quot;Button2&amp;quot;;&lt;br /&gt;
            this.Button2.Size = new System.Drawing.Size(168, 24);&lt;br /&gt;
            this.Button2.TabIndex = 1;&lt;br /&gt;
            this.Button2.Text = &amp;quot;Button2&amp;quot;;&lt;br /&gt;
            // &lt;br /&gt;
            // Button1&lt;br /&gt;
            // &lt;br /&gt;
            this.Button1.FlatStyle = System.Windows.Forms.FlatStyle.System;&lt;br /&gt;
            this.Button1.Location = new System.Drawing.Point(16, 20);&lt;br /&gt;
            this.Button1.Name = &amp;quot;Button1&amp;quot;;&lt;br /&gt;
            this.Button1.Size = new System.Drawing.Size(168, 24);&lt;br /&gt;
            this.Button1.TabIndex = 0;&lt;br /&gt;
            this.Button1.Text = &amp;quot;Button1&amp;quot;;&lt;br /&gt;
            // &lt;br /&gt;
            // ScrollablePanel&lt;br /&gt;
            // &lt;br /&gt;
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);&lt;br /&gt;
            this.ClientSize = new System.Drawing.Size(360, 194);&lt;br /&gt;
            this.Controls.AddRange(new System.Windows.Forms.Control[] {&lt;br /&gt;
                                                                          this.Panel1});&lt;br /&gt;
            this.Font = new System.Drawing.Font(&amp;quot;Tahoma&amp;quot;, 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));&lt;br /&gt;
            this.Name = &amp;quot;ScrollablePanel&amp;quot;;&lt;br /&gt;
            this.Text = &amp;quot;Scrollable Panel&amp;quot;;&lt;br /&gt;
            this.Panel1.ResumeLayout(false);&lt;br /&gt;
            this.ResumeLayout(false);&lt;br /&gt;
        }&lt;br /&gt;
        #endregion&lt;br /&gt;
        static void Main() &lt;br /&gt;
        {&lt;br /&gt;
            Application.Run(new ScrollablePanel());&lt;br /&gt;
        }&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>