/* * Created by SharpDevelop. * User: romejs * Date: 10/7/2004 * Time: 12:22 PM * * To change this template use Tools | Options | Coding | Edit Standard Headers. */ using System; using System.Windows.Forms; namespace DefaultNamespace { /// /// Description of MainForm. /// public class MainForm : System.Windows.Forms.Form { private System.Windows.Forms.Label label2; private System.Windows.Forms.Button button1; private System.Windows.Forms.RichTextBox richTextBox1; private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.Label label1; public MainForm() { // // The InitializeComponent() call is required for Windows Forms designer support. // InitializeComponent(); // // TODO: Add constructor code after the InitializeComponent() call. // } [STAThread] public static void Main(string[] args) { Application.Run(new MainForm()); } #region Windows Forms Designer generated code /// /// This method is required for Windows Forms designer support. /// Do not change the method contents inside the source code editor. The Forms designer might /// not be able to load this method if it was changed manually. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.textBox1 = new System.Windows.Forms.TextBox(); this.richTextBox1 = new System.Windows.Forms.RichTextBox(); this.button1 = new System.Windows.Forms.Button(); this.label2 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // label1 // this.label1.Location = new System.Drawing.Point(16, 56); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(100, 16); this.label1.TabIndex = 3; this.label1.Text = "Body"; // // textBox1 // this.textBox1.Location = new System.Drawing.Point(16, 24); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(336, 20); this.textBox1.TabIndex = 0; this.textBox1.Text = ""; // // richTextBox1 // this.richTextBox1.Location = new System.Drawing.Point(16, 72); this.richTextBox1.Name = "richTextBox1"; this.richTextBox1.Size = new System.Drawing.Size(336, 320); this.richTextBox1.TabIndex = 5; this.richTextBox1.Text = ""; // // button1 // this.button1.Location = new System.Drawing.Point(264, 408); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(88, 23); this.button1.TabIndex = 2; this.button1.Text = "Submit"; this.button1.Click += new System.EventHandler(this.Button1Click); // // label2 // this.label2.Location = new System.Drawing.Point(16, 8); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(100, 16); this.label2.TabIndex = 4; this.label2.Text = "Title"; // // MainForm // this.AutoScaleBaseSize = new System.Drawing.Size(5, 13); this.ClientSize = new System.Drawing.Size(368, 442); this.Controls.Add(this.richTextBox1); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Controls.Add(this.button1); this.Controls.Add(this.textBox1); this.Name = "MainForm"; this.Text = "BlurBlog"; this.ResumeLayout(false); } #endregion void Button1Click(object sender, System.EventArgs e) { BlursoftBlogService blog = new BlursoftBlogService( ); blog.Post( this.textBox1.Text , this.richTextBox1.Text ); } } }