CcMainForm.Designer.cs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. namespace CodingCannon
  2. {
  3. partial class CcMainForm
  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. tabControl1 = new TabControl();
  29. SuspendLayout();
  30. //
  31. // tabControl1
  32. //
  33. tabControl1.Dock = DockStyle.Fill;
  34. tabControl1.Location = new Point(0, 0);
  35. tabControl1.Name = "tabControl1";
  36. tabControl1.SelectedIndex = 0;
  37. tabControl1.Size = new Size(1314, 935);
  38. tabControl1.TabIndex = 0;
  39. //
  40. // CcMainForm
  41. //
  42. AutoScaleDimensions = new SizeF(11F, 24F);
  43. AutoScaleMode = AutoScaleMode.Font;
  44. ClientSize = new Size(1314, 935);
  45. Controls.Add(tabControl1);
  46. Name = "CcMainForm";
  47. Text = "Coding Cannon";
  48. Shown += CcMainForm_Shown;
  49. ResumeLayout(false);
  50. }
  51. #endregion
  52. private TabControl tabControl1;
  53. }
  54. }