Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 4.34 KB | None | 0 0
  1. namespace WindowsFormsApp1
  2. {
  3.     partial class Form1
  4.     {
  5.         /// <summary>
  6.         /// Wymagana zmienna projektanta.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.  
  10.         /// <summary>
  11.         /// Wyczyść wszystkie używane zasoby.
  12.         /// </summary>
  13.         /// <param name="disposing">prawda, jeżeli zarządzane zasoby powinny zostać zlikwidowane; Fałsz w przeciwnym wypadku.</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.  
  23.         #region Kod generowany przez Projektanta formularzy systemu Windows
  24.  
  25.         /// <summary>
  26.         /// Metoda wymagana do obsługi projektanta — nie należy modyfikować
  27.         /// jej zawartości w edytorze kodu.
  28.         /// </summary>
  29.         private void InitializeComponent()
  30.         {
  31.             this.dataGridView1 = new System.Windows.Forms.DataGridView();
  32.             this.x1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  33.             this.x2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  34.             this.x3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  35.             this.x4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  36.             this.x5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37.             ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  38.             this.SuspendLayout();
  39.             //
  40.             // dataGridView1
  41.             //
  42.             this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  43.             this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  44.             this.x1,
  45.             this.x2,
  46.             this.x3,
  47.             this.x4,
  48.             this.x5});
  49.             this.dataGridView1.Location = new System.Drawing.Point(12, 36);
  50.             this.dataGridView1.Name = "dataGridView1";
  51.             this.dataGridView1.Size = new System.Drawing.Size(369, 488);
  52.             this.dataGridView1.TabIndex = 0;
  53.             this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick_1);
  54.             //
  55.             // x1
  56.             //
  57.             this.x1.HeaderText = "x1";
  58.             this.x1.Name = "x1";
  59.             this.x1.Width = 57;
  60.             //
  61.             // x2
  62.             //
  63.             this.x2.HeaderText = "x2";
  64.             this.x2.Name = "x2";
  65.             this.x2.Width = 56;
  66.             //
  67.             // x3
  68.             //
  69.             this.x3.HeaderText = "x3";
  70.             this.x3.Name = "x3";
  71.             this.x3.Width = 58;
  72.             //
  73.             // x4
  74.             //
  75.             this.x4.HeaderText = "x4";
  76.             this.x4.Name = "x4";
  77.             this.x4.Width = 57;
  78.             //
  79.             // x5
  80.             //
  81.             this.x5.HeaderText = "x5";
  82.             this.x5.Name = "x5";
  83.             this.x5.Width = 57;
  84.             //
  85.             // Form1
  86.             //
  87.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  88.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  89.             this.ClientSize = new System.Drawing.Size(1051, 671);
  90.             this.Controls.Add(this.dataGridView1);
  91.             this.Name = "Form1";
  92.             this.Text = "Form1";
  93.             ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  94.             this.ResumeLayout(false);
  95.  
  96.             //przy forze który powtarzal te instrukcje wypieprzalo blad
  97.             this.dataGridView1.Rows.Add();
  98.             this.dataGridView1.Rows.Add();
  99.             this.dataGridView1.Rows.Add();
  100.             this.dataGridView1.Rows.Add();
  101.  
  102.         }
  103.  
  104.         #endregion
  105.  
  106.         private System.Windows.Forms.DataGridView dataGridView1;
  107.         private System.Windows.Forms.DataGridViewTextBoxColumn x1;
  108.         private System.Windows.Forms.DataGridViewTextBoxColumn x2;
  109.         private System.Windows.Forms.DataGridViewTextBoxColumn x3;
  110.         private System.Windows.Forms.DataGridViewTextBoxColumn x4;
  111.         private System.Windows.Forms.DataGridViewTextBoxColumn x5;
  112.  
  113.        
  114.  
  115.     }
  116. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement