Advertisement
Guest User

frmMain.Designer.cs

a guest
Dec 27th, 2013
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 6.15 KB | None | 0 0
  1. namespace sqlFileExample
  2. {
  3.     partial class frmMain
  4.     {
  5.         /// <summary>
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.  
  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.  
  23.         #region Windows Form Designer generated code
  24.  
  25.         /// <summary>
  26.         /// Required method for Designer support - do not modify
  27.         /// the contents of this method with the code editor.
  28.         /// </summary>
  29.         private void InitializeComponent()
  30.         {
  31.             this.ofdMain = new System.Windows.Forms.OpenFileDialog();
  32.             this.sfdMain = new System.Windows.Forms.SaveFileDialog();
  33.             this.gridViewMain = new System.Windows.Forms.DataGridView();
  34.             this.btnDownloadFile = new System.Windows.Forms.Button();
  35.             this.btnAddFile = new System.Windows.Forms.Button();
  36.             this.progressBar1 = new System.Windows.Forms.ProgressBar();
  37.             this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
  38.             ((System.ComponentModel.ISupportInitialize)(this.gridViewMain)).BeginInit();
  39.             this.SuspendLayout();
  40.             //
  41.             // gridViewMain
  42.             //
  43.             this.gridViewMain.AllowUserToAddRows = false;
  44.             this.gridViewMain.AllowUserToDeleteRows = false;
  45.             this.gridViewMain.AllowUserToOrderColumns = true;
  46.             this.gridViewMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  47.             | System.Windows.Forms.AnchorStyles.Left)
  48.             | System.Windows.Forms.AnchorStyles.Right)));
  49.             this.gridViewMain.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
  50.             this.gridViewMain.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
  51.             this.gridViewMain.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  52.             this.gridViewMain.Location = new System.Drawing.Point(12, 12);
  53.             this.gridViewMain.MultiSelect = false;
  54.             this.gridViewMain.Name = "gridViewMain";
  55.             this.gridViewMain.ReadOnly = true;
  56.             this.gridViewMain.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  57.             this.gridViewMain.Size = new System.Drawing.Size(483, 250);
  58.             this.gridViewMain.TabIndex = 0;
  59.             //
  60.             // btnDownloadFile
  61.             //
  62.             this.btnDownloadFile.Location = new System.Drawing.Point(393, 268);
  63.             this.btnDownloadFile.Name = "btnDownloadFile";
  64.             this.btnDownloadFile.Size = new System.Drawing.Size(102, 23);
  65.             this.btnDownloadFile.TabIndex = 1;
  66.             this.btnDownloadFile.Text = "Download File";
  67.             this.btnDownloadFile.UseVisualStyleBackColor = true;
  68.             this.btnDownloadFile.Click += new System.EventHandler(this.btnDownloadFile_Click);
  69.             //
  70.             // btnAddFile
  71.             //
  72.             this.btnAddFile.Location = new System.Drawing.Point(312, 268);
  73.             this.btnAddFile.Name = "btnAddFile";
  74.             this.btnAddFile.Size = new System.Drawing.Size(75, 23);
  75.             this.btnAddFile.TabIndex = 2;
  76.             this.btnAddFile.Text = "Add File";
  77.             this.btnAddFile.UseVisualStyleBackColor = true;
  78.             this.btnAddFile.Click += new System.EventHandler(this.btnAddFile_Click);
  79.             //
  80.             // progressBar1
  81.             //
  82.             this.progressBar1.Location = new System.Drawing.Point(13, 269);
  83.             this.progressBar1.Maximum = 1000000;
  84.             this.progressBar1.Name = "progressBar1";
  85.             this.progressBar1.Size = new System.Drawing.Size(293, 23);
  86.             this.progressBar1.Step = 1;
  87.             this.progressBar1.TabIndex = 3;
  88.             //
  89.             // backgroundWorker1
  90.             //
  91.             this.backgroundWorker1.WorkerReportsProgress = true;
  92.             this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
  93.             this.backgroundWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged);
  94.             this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
  95.             //
  96.             // frmMain
  97.             //
  98.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  99.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  100.             this.ClientSize = new System.Drawing.Size(507, 303);
  101.             this.Controls.Add(this.progressBar1);
  102.             this.Controls.Add(this.btnAddFile);
  103.             this.Controls.Add(this.btnDownloadFile);
  104.             this.Controls.Add(this.gridViewMain);
  105.             this.Name = "frmMain";
  106.             this.Text = "[runtime]";
  107.             this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing);
  108.             this.Load += new System.EventHandler(this.frmMain_Load);
  109.             ((System.ComponentModel.ISupportInitialize)(this.gridViewMain)).EndInit();
  110.             this.ResumeLayout(false);
  111.  
  112.         }
  113.  
  114.         #endregion
  115.  
  116.         private System.Windows.Forms.OpenFileDialog ofdMain;
  117.         private System.Windows.Forms.SaveFileDialog sfdMain;
  118.         private System.Windows.Forms.DataGridView gridViewMain;
  119.         private System.Windows.Forms.Button btnDownloadFile;
  120.         private System.Windows.Forms.Button btnAddFile;
  121.         private System.Windows.Forms.ProgressBar progressBar1;
  122.         private System.ComponentModel.BackgroundWorker backgroundWorker1;
  123.     }
  124. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement