markus / MarkusAutoUpdate / src / NetSparkle.Samples.DownloadedExe / Form1.Designer.cs @ 38d69491
이력 | 보기 | 이력해설 | 다운로드 (2.29 KB)
1 |
namespace NetSparkleUpdater.Samples.UpdateExe |
---|---|
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.label1 = new System.Windows.Forms.Label(); |
32 |
this.SuspendLayout(); |
33 |
// |
34 |
// label1 |
35 |
// |
36 |
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 13.875F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
37 |
this.label1.Location = new System.Drawing.Point(60, 44); |
38 |
this.label1.Name = "label1"; |
39 |
this.label1.Size = new System.Drawing.Size(577, 399); |
40 |
this.label1.TabIndex = 0; |
41 |
this.label1.Text = "Congratulations! You\'ve downloaded an updated application! Normally, this would b" + |
42 |
"e an installer or some other tool to actually update your base application."; |
43 |
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
44 |
this.label1.Click += new System.EventHandler(this.label1_Click); |
45 |
// |
46 |
// Form1 |
47 |
// |
48 |
this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F); |
49 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
50 |
this.ClientSize = new System.Drawing.Size(693, 507); |
51 |
this.Controls.Add(this.label1); |
52 |
this.Name = "Form1"; |
53 |
this.Text = "Form1"; |
54 |
this.ResumeLayout(false); |
55 |
|
56 |
} |
57 |
|
58 |
#endregion |
59 |
|
60 |
private System.Windows.Forms.Label label1; |
61 |
} |
62 |
} |
63 |
|