Form1.Designer.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. namespace _06_2_Newton_ulady_rownan
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.tbLog = new System.Windows.Forms.TextBox();
  29. this.tbEps = new System.Windows.Forms.TextBox();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  32. this.button1 = new System.Windows.Forms.Button();
  33. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // tbLog
  37. //
  38. this.tbLog.Location = new System.Drawing.Point(206, 260);
  39. this.tbLog.Name = "tbLog";
  40. this.tbLog.Size = new System.Drawing.Size(100, 20);
  41. this.tbLog.TabIndex = 0;
  42. //
  43. // tbEps
  44. //
  45. this.tbEps.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  46. this.tbEps.Location = new System.Drawing.Point(100, 24);
  47. this.tbEps.Name = "tbEps";
  48. this.tbEps.Size = new System.Drawing.Size(195, 29);
  49. this.tbEps.TabIndex = 1;
  50. this.tbEps.Text = " 0,001";
  51. //
  52. // label1
  53. //
  54. this.label1.AutoSize = true;
  55. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  56. this.label1.Location = new System.Drawing.Point(32, 27);
  57. this.label1.Name = "label1";
  58. this.label1.Size = new System.Drawing.Size(62, 24);
  59. this.label1.TabIndex = 2;
  60. this.label1.Text = "eps = ";
  61. //
  62. // pictureBox1
  63. //
  64. this.pictureBox1.Image = global::_06_2_Newton_ulady_rownan.Properties.Resources.rownielin;
  65. this.pictureBox1.Location = new System.Drawing.Point(570, -2);
  66. this.pictureBox1.Name = "pictureBox1";
  67. this.pictureBox1.Size = new System.Drawing.Size(444, 117);
  68. this.pictureBox1.TabIndex = 3;
  69. this.pictureBox1.TabStop = false;
  70. //
  71. // button1
  72. //
  73. this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
  74. this.button1.Location = new System.Drawing.Point(315, 12);
  75. this.button1.Name = "button1";
  76. this.button1.Size = new System.Drawing.Size(240, 98);
  77. this.button1.TabIndex = 4;
  78. this.button1.Text = "Rozwiąż układ równań:";
  79. this.button1.UseVisualStyleBackColor = true;
  80. this.button1.Click += new System.EventHandler(this.button1_Click);
  81. //
  82. // Form1
  83. //
  84. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  85. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  86. this.ClientSize = new System.Drawing.Size(1014, 450);
  87. this.Controls.Add(this.button1);
  88. this.Controls.Add(this.pictureBox1);
  89. this.Controls.Add(this.label1);
  90. this.Controls.Add(this.tbEps);
  91. this.Controls.Add(this.tbLog);
  92. this.Name = "Form1";
  93. this.Text = "Form1";
  94. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  95. this.ResumeLayout(false);
  96. this.PerformLayout();
  97. }
  98. #endregion
  99. private System.Windows.Forms.TextBox tbLog;
  100. private System.Windows.Forms.TextBox tbEps;
  101. private System.Windows.Forms.Label label1;
  102. private System.Windows.Forms.PictureBox pictureBox1;
  103. private System.Windows.Forms.Button button1;
  104. }
  105. }