Form2.Designer.cs 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. 
  2. namespace WindowsFormsApp19
  3. {
  4. partial class Form2
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.linkLabel1 = new System.Windows.Forms.LinkLabel();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.button1 = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // linkLabel1
  35. //
  36. this.linkLabel1.AutoSize = true;
  37. this.linkLabel1.Location = new System.Drawing.Point(152, 75);
  38. this.linkLabel1.Name = "linkLabel1";
  39. this.linkLabel1.Size = new System.Drawing.Size(119, 13);
  40. this.linkLabel1.TabIndex = 0;
  41. this.linkLabel1.TabStop = true;
  42. this.linkLabel1.Text = "https://pro.kansk-tc.ru/";
  43. this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
  44. //
  45. // label1
  46. //
  47. this.label1.AutoSize = true;
  48. this.label1.Location = new System.Drawing.Point(40, 75);
  49. this.label1.Name = "label1";
  50. this.label1.Size = new System.Drawing.Size(106, 13);
  51. this.label1.TabIndex = 1;
  52. this.label1.Text = "Переход по ссылке";
  53. //
  54. // button1
  55. //
  56. this.button1.Location = new System.Drawing.Point(270, 129);
  57. this.button1.Name = "button1";
  58. this.button1.Size = new System.Drawing.Size(32, 23);
  59. this.button1.TabIndex = 2;
  60. this.button1.Text = ">";
  61. this.button1.UseVisualStyleBackColor = true;
  62. this.button1.Click += new System.EventHandler(this.button1_Click);
  63. //
  64. // Form2
  65. //
  66. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  67. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  68. this.ClientSize = new System.Drawing.Size(314, 164);
  69. this.Controls.Add(this.button1);
  70. this.Controls.Add(this.label1);
  71. this.Controls.Add(this.linkLabel1);
  72. this.Name = "Form2";
  73. this.Text = "Элементы управления";
  74. this.ResumeLayout(false);
  75. this.PerformLayout();
  76. }
  77. #endregion
  78. private System.Windows.Forms.LinkLabel linkLabel1;
  79. private System.Windows.Forms.Label label1;
  80. private System.Windows.Forms.Button button1;
  81. }
  82. }