| [428] | 1 | namespace BrMerger
|
|---|
| 2 | {
|
|---|
| 3 | partial class Form1
|
|---|
| 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.button1 = new System.Windows.Forms.Button();
|
|---|
| 32 | this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
|
|---|
| 33 | this.progressBar1 = new System.Windows.Forms.ProgressBar();
|
|---|
| 34 | this.labelInfo1 = new System.Windows.Forms.Label();
|
|---|
| 35 | this.SuspendLayout();
|
|---|
| 36 | //
|
|---|
| 37 | // button1
|
|---|
| 38 | //
|
|---|
| 39 | this.button1.Location = new System.Drawing.Point(35, 37);
|
|---|
| 40 | this.button1.Name = "button1";
|
|---|
| 41 | this.button1.Size = new System.Drawing.Size(75, 23);
|
|---|
| 42 | this.button1.TabIndex = 0;
|
|---|
| [445] | 43 | this.button1.Text = "Start";
|
|---|
| [428] | 44 | this.button1.UseVisualStyleBackColor = true;
|
|---|
| 45 | this.button1.Click += new System.EventHandler(this.button1_Click);
|
|---|
| 46 | //
|
|---|
| 47 | // backgroundWorker1
|
|---|
| 48 | //
|
|---|
| 49 | this.backgroundWorker1.WorkerReportsProgress = true;
|
|---|
| 50 | this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
|
|---|
| 51 | this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
|
|---|
| 52 | this.backgroundWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged);
|
|---|
| 53 | //
|
|---|
| 54 | // progressBar1
|
|---|
| 55 | //
|
|---|
| 56 | this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
|---|
| 57 | | System.Windows.Forms.AnchorStyles.Right)));
|
|---|
| 58 | this.progressBar1.Location = new System.Drawing.Point(12, 152);
|
|---|
| 59 | this.progressBar1.Name = "progressBar1";
|
|---|
| 60 | this.progressBar1.Size = new System.Drawing.Size(426, 23);
|
|---|
| 61 | this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
|
|---|
| 62 | this.progressBar1.TabIndex = 1;
|
|---|
| 63 | //
|
|---|
| 64 | // labelInfo1
|
|---|
| 65 | //
|
|---|
| 66 | this.labelInfo1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|---|
| 67 | this.labelInfo1.AutoSize = true;
|
|---|
| 68 | this.labelInfo1.Location = new System.Drawing.Point(9, 136);
|
|---|
| 69 | this.labelInfo1.Name = "labelInfo1";
|
|---|
| 70 | this.labelInfo1.Size = new System.Drawing.Size(13, 13);
|
|---|
| 71 | this.labelInfo1.TabIndex = 2;
|
|---|
| 72 | this.labelInfo1.Text = "_";
|
|---|
| 73 | //
|
|---|
| 74 | // Form1
|
|---|
| 75 | //
|
|---|
| 76 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|---|
| 77 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|---|
| 78 | this.ClientSize = new System.Drawing.Size(450, 187);
|
|---|
| 79 | this.Controls.Add(this.labelInfo1);
|
|---|
| 80 | this.Controls.Add(this.progressBar1);
|
|---|
| 81 | this.Controls.Add(this.button1);
|
|---|
| 82 | this.MinimumSize = new System.Drawing.Size(250, 140);
|
|---|
| 83 | this.Name = "Form1";
|
|---|
| 84 | this.Text = "£¹czenie baz";
|
|---|
| 85 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
|
|---|
| 86 | this.ResumeLayout(false);
|
|---|
| 87 | this.PerformLayout();
|
|---|
| 88 |
|
|---|
| 89 | }
|
|---|
| 90 |
|
|---|
| 91 | #endregion
|
|---|
| 92 |
|
|---|
| 93 | private System.Windows.Forms.Button button1;
|
|---|
| 94 | private System.ComponentModel.BackgroundWorker backgroundWorker1;
|
|---|
| 95 | private System.Windows.Forms.ProgressBar progressBar1;
|
|---|
| 96 | private System.Windows.Forms.Label labelInfo1;
|
|---|
| 97 | }
|
|---|
| 98 | }
|
|---|
| 99 |
|
|---|