namespace WebServiceCalcPiSample { partial class AsyncCalcPiForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if( disposing && (components != null) ) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.decimalPlacesNumericUpDown = new System.Windows.Forms.NumericUpDown(); this.calcButton = new System.Windows.Forms.Button(); this.resultsTextBox = new System.Windows.Forms.TextBox(); this.panel1 = new System.Windows.Forms.Panel(); this.calcPiServiceComponent = new WebServiceCalcPiSample.CalcPiWebService.CalcPiService(); ((System.ComponentModel.ISupportInitialize)(this.decimalPlacesNumericUpDown)).BeginInit(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(12, 12); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(60, 13); this.label1.TabIndex = 0; this.label1.Text = "Digits of Pi:"; // // decimalPlacesNumericUpDown // this.decimalPlacesNumericUpDown.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.decimalPlacesNumericUpDown.Location = new System.Drawing.Point(80, 9); this.decimalPlacesNumericUpDown.Maximum = new decimal(new int[] { 10000, 0, 0, 0}); this.decimalPlacesNumericUpDown.Name = "decimalPlacesNumericUpDown"; this.decimalPlacesNumericUpDown.Size = new System.Drawing.Size(67, 20); this.decimalPlacesNumericUpDown.TabIndex = 1; // // calcButton // this.calcButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.calcButton.Location = new System.Drawing.Point(153, 7); this.calcButton.Name = "calcButton"; this.calcButton.Size = new System.Drawing.Size(75, 23); this.calcButton.TabIndex = 2; this.calcButton.Text = "Calculate"; this.calcButton.Click += new System.EventHandler(this.calcButton_Click); // // resultsTextBox // this.resultsTextBox.BackColor = System.Drawing.Color.White; this.resultsTextBox.Dock = System.Windows.Forms.DockStyle.Fill; this.resultsTextBox.Location = new System.Drawing.Point(0, 38); this.resultsTextBox.Multiline = true; this.resultsTextBox.Name = "resultsTextBox"; this.resultsTextBox.ReadOnly = true; this.resultsTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.resultsTextBox.Size = new System.Drawing.Size(241, 108); this.resultsTextBox.TabIndex = 1; // // panel1 // this.panel1.Controls.Add(this.decimalPlacesNumericUpDown); this.panel1.Controls.Add(this.label1); this.panel1.Controls.Add(this.calcButton); this.panel1.Dock = System.Windows.Forms.DockStyle.Top; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(241, 38); this.panel1.TabIndex = 0; // // calcPiServiceComponent // this.calcPiServiceComponent.Credentials = null; this.calcPiServiceComponent.Url = "http://localhost/CalcPiWebService/CalcPiService.asmx"; this.calcPiServiceComponent.UseDefaultCredentials = false; this.calcPiServiceComponent.CalcPiCompleted += new WebServiceCalcPiSample.CalcPiWebService.CalcPiCompletedEventHandler(this.calcPiServiceComponent_CalcPiCompleted); // // AsyncCalcPiForm // this.ClientSize = new System.Drawing.Size(241, 146); this.Controls.Add(this.resultsTextBox); this.Controls.Add(this.panel1); this.MinimumSize = new System.Drawing.Size(249, 180); this.Name = "AsyncCalcPiForm"; this.Text = "Digits of Pi"; ((System.ComponentModel.ISupportInitialize)(this.decimalPlacesNumericUpDown)).EndInit(); this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.NumericUpDown decimalPlacesNumericUpDown; private System.Windows.Forms.Button calcButton; private System.Windows.Forms.TextBox resultsTextBox; private System.Windows.Forms.Panel panel1; private WebServiceCalcPiSample.CalcPiWebService.CalcPiService calcPiServiceComponent; } }