comparison ARClient/frmSync.Designer.cs @ 0:90ea68d4f92f

First release
author Ivo Smits <Ivo@UCIS.nl>
date Sat, 08 Nov 2014 22:43:51 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:90ea68d4f92f
1 namespace ARClient {
2 partial class frmSync {
3 /// <summary>
4 /// Required designer variable.
5 /// </summary>
6 private System.ComponentModel.IContainer components = null;
7
8 /// <summary>
9 /// Clean up any resources being used.
10 /// </summary>
11 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12 protected override void Dispose(bool disposing) {
13 if (disposing && (components != null)) {
14 components.Dispose();
15 }
16 base.Dispose(disposing);
17 }
18
19 #region Windows Form Designer generated code
20
21 /// <summary>
22 /// Required method for Designer support - do not modify
23 /// the contents of this method with the code editor.
24 /// </summary>
25 private void InitializeComponent() {
26 this.lblActivity = new System.Windows.Forms.Label();
27 this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
28 this.button1 = new System.Windows.Forms.Button();
29 this.lblAddress = new System.Windows.Forms.Label();
30 this.lblTotal = new System.Windows.Forms.Label();
31 this.SuspendLayout();
32 //
33 // lblActivity
34 //
35 this.lblActivity.AutoSize = true;
36 this.lblActivity.Location = new System.Drawing.Point(12, 22);
37 this.lblActivity.Name = "lblActivity";
38 this.lblActivity.Size = new System.Drawing.Size(39, 13);
39 this.lblActivity.TabIndex = 0;
40 this.lblActivity.Text = "Busy...";
41 //
42 // backgroundWorker1
43 //
44 this.backgroundWorker1.WorkerReportsProgress = true;
45 this.backgroundWorker1.WorkerSupportsCancellation = true;
46 this.backgroundWorker1.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
47 this.backgroundWorker1.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
48 this.backgroundWorker1.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorker1_ProgressChanged);
49 //
50 // button1
51 //
52 this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
53 this.button1.Location = new System.Drawing.Point(342, 59);
54 this.button1.Name = "button1";
55 this.button1.Size = new System.Drawing.Size(75, 23);
56 this.button1.TabIndex = 1;
57 this.button1.Text = "Cancel";
58 this.button1.UseVisualStyleBackColor = true;
59 this.button1.Click += new System.EventHandler(this.button1_Click);
60 //
61 // lblAddress
62 //
63 this.lblAddress.AutoSize = true;
64 this.lblAddress.Location = new System.Drawing.Point(12, 9);
65 this.lblAddress.Name = "lblAddress";
66 this.lblAddress.Size = new System.Drawing.Size(45, 13);
67 this.lblAddress.TabIndex = 2;
68 this.lblAddress.Text = "Address";
69 //
70 // lblTotal
71 //
72 this.lblTotal.AutoSize = true;
73 this.lblTotal.Location = new System.Drawing.Point(12, 35);
74 this.lblTotal.Name = "lblTotal";
75 this.lblTotal.Size = new System.Drawing.Size(31, 13);
76 this.lblTotal.TabIndex = 3;
77 this.lblTotal.Text = "Total";
78 //
79 // frmSync
80 //
81 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
82 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
83 this.ClientSize = new System.Drawing.Size(429, 94);
84 this.Controls.Add(this.lblTotal);
85 this.Controls.Add(this.lblAddress);
86 this.Controls.Add(this.button1);
87 this.Controls.Add(this.lblActivity);
88 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
89 this.Name = "frmSync";
90 this.Text = "MARC Resource Manager synchronization";
91 this.Load += new System.EventHandler(this.frmSync_Load);
92 this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmSync_FormClosed);
93 this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmSync_FormClosing);
94 this.ResumeLayout(false);
95 this.PerformLayout();
96
97 }
98
99 #endregion
100
101 private System.Windows.Forms.Label lblActivity;
102 private System.ComponentModel.BackgroundWorker backgroundWorker1;
103 private System.Windows.Forms.Button button1;
104 private System.Windows.Forms.Label lblAddress;
105 private System.Windows.Forms.Label lblTotal;
106 }
107 }