1
0

MainForm.Designer.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. 
  2. namespace Агенты
  3. {
  4. partial class MainForm
  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.MainPanel = new System.Windows.Forms.TableLayoutPanel();
  30. this.SuspendLayout();
  31. //
  32. // MainPanel
  33. //
  34. this.MainPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  35. | System.Windows.Forms.AnchorStyles.Left)
  36. | System.Windows.Forms.AnchorStyles.Right)));
  37. this.MainPanel.AutoScroll = true;
  38. this.MainPanel.ColumnCount = 1;
  39. this.MainPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
  40. this.MainPanel.Location = new System.Drawing.Point(13, 31);
  41. this.MainPanel.Name = "MainPanel";
  42. this.MainPanel.RowCount = 1;
  43. this.MainPanel.RowStyles.Add(new System.Windows.Forms.RowStyle());
  44. this.MainPanel.Size = new System.Drawing.Size(1207, 458);
  45. this.MainPanel.TabIndex = 0;
  46. //
  47. // MainForm
  48. //
  49. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  50. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  51. this.ClientSize = new System.Drawing.Size(1247, 514);
  52. this.Controls.Add(this.MainPanel);
  53. this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
  54. this.MinimumSize = new System.Drawing.Size(1265, 561);
  55. this.Name = "MainForm";
  56. this.Text = "Агенты по продажам";
  57. this.Load += new System.EventHandler(this.Form1_Load);
  58. this.ResumeLayout(false);
  59. }
  60. #endregion
  61. private System.Windows.Forms.TableLayoutPanel MainPanel;
  62. }
  63. }