/Code/turnet_v1.6/UI.Desktop/frmAltaObraSocial.Designer.cs

http://sistematurnet.codeplex.com · C# · 136 lines · 98 code · 6 blank · 32 comment · 3 complexity · 81a6e5c554ab77f4de44c8aa869fd9a5 MD5 · raw file

  1. namespace UI.Desktop
  2. {
  3. partial class frmAltaObraSocial
  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.groupBox1 = new System.Windows.Forms.GroupBox();
  29. this.txtObraSocial = new System.Windows.Forms.TextBox();
  30. this.label2 = new System.Windows.Forms.Label();
  31. this.btnCerrar = new System.Windows.Forms.Button();
  32. this.btnGuardarOS = new System.Windows.Forms.Button();
  33. this.label6 = new System.Windows.Forms.Label();
  34. this.groupBox1.SuspendLayout();
  35. this.SuspendLayout();
  36. //
  37. // groupBox1
  38. //
  39. this.groupBox1.Controls.Add(this.txtObraSocial);
  40. this.groupBox1.Controls.Add(this.label2);
  41. this.groupBox1.Location = new System.Drawing.Point(38, 33);
  42. this.groupBox1.Name = "groupBox1";
  43. this.groupBox1.Size = new System.Drawing.Size(469, 117);
  44. this.groupBox1.TabIndex = 124;
  45. this.groupBox1.TabStop = false;
  46. this.groupBox1.Text = "Agregar Obra Social";
  47. //
  48. // txtObraSocial
  49. //
  50. this.txtObraSocial.Location = new System.Drawing.Point(173, 45);
  51. this.txtObraSocial.Name = "txtObraSocial";
  52. this.txtObraSocial.Size = new System.Drawing.Size(172, 20);
  53. this.txtObraSocial.TabIndex = 118;
  54. //
  55. // label2
  56. //
  57. this.label2.AutoSize = true;
  58. this.label2.Location = new System.Drawing.Point(65, 48);
  59. this.label2.Name = "label2";
  60. this.label2.Size = new System.Drawing.Size(102, 13);
  61. this.label2.TabIndex = 113;
  62. this.label2.Text = "Nombre Obra Social";
  63. //
  64. // btnCerrar
  65. //
  66. this.btnCerrar.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  67. this.btnCerrar.Image = global::UI.Desktop.Properties.Resources.Close_icon1;
  68. this.btnCerrar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  69. this.btnCerrar.Location = new System.Drawing.Point(429, 167);
  70. this.btnCerrar.Name = "btnCerrar";
  71. this.btnCerrar.Size = new System.Drawing.Size(78, 33);
  72. this.btnCerrar.TabIndex = 123;
  73. this.btnCerrar.Text = "Cerrar";
  74. this.btnCerrar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  75. this.btnCerrar.UseVisualStyleBackColor = true;
  76. this.btnCerrar.Click += new System.EventHandler(this.btnCerrar_Click);
  77. //
  78. // btnGuardarOS
  79. //
  80. this.btnGuardarOS.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  81. this.btnGuardarOS.Image = global::UI.Desktop.Properties.Resources.Add_icon1;
  82. this.btnGuardarOS.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  83. this.btnGuardarOS.Location = new System.Drawing.Point(294, 167);
  84. this.btnGuardarOS.Name = "btnGuardarOS";
  85. this.btnGuardarOS.Size = new System.Drawing.Size(80, 33);
  86. this.btnGuardarOS.TabIndex = 122;
  87. this.btnGuardarOS.Text = "Guardar";
  88. this.btnGuardarOS.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  89. this.btnGuardarOS.UseVisualStyleBackColor = true;
  90. this.btnGuardarOS.Click += new System.EventHandler(this.btnGuardarOS_Click);
  91. //
  92. // label6
  93. //
  94. this.label6.AutoSize = true;
  95. this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 26.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Italic | System.Drawing.FontStyle.Underline))), System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  96. this.label6.Location = new System.Drawing.Point(31, 167);
  97. this.label6.Name = "label6";
  98. this.label6.Size = new System.Drawing.Size(117, 39);
  99. this.label6.TabIndex = 126;
  100. this.label6.Text = "Turnet";
  101. //
  102. // frmAltaObraSocial
  103. //
  104. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  105. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  106. this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
  107. this.ClientSize = new System.Drawing.Size(539, 227);
  108. this.Controls.Add(this.label6);
  109. this.Controls.Add(this.groupBox1);
  110. this.Controls.Add(this.btnCerrar);
  111. this.Controls.Add(this.btnGuardarOS);
  112. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  113. this.Name = "frmAltaObraSocial";
  114. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  115. this.Text = "Agregar Obra Social";
  116. this.Load += new System.EventHandler(this.frmAltaObraSocial_Load);
  117. this.groupBox1.ResumeLayout(false);
  118. this.groupBox1.PerformLayout();
  119. this.ResumeLayout(false);
  120. this.PerformLayout();
  121. }
  122. #endregion
  123. private System.Windows.Forms.GroupBox groupBox1;
  124. private System.Windows.Forms.TextBox txtObraSocial;
  125. private System.Windows.Forms.Label label2;
  126. private System.Windows.Forms.Button btnCerrar;
  127. private System.Windows.Forms.Button btnGuardarOS;
  128. private System.Windows.Forms.Label label6;
  129. }
  130. }