FrmAboutUs.Designer.cs
5.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
namespace App
{
partial class FrmAboutUs
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAboutUs));
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.lbl_CopyRight = new System.Windows.Forms.Label();
this.lbl_FrancePhone = new System.Windows.Forms.Label();
this.lbl_ChinaPhone = new System.Windows.Forms.Label();
this.tabPanel1 = new RibbonStyle.TabPanel();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.tabPanel1.SuspendLayout();
this.SuspendLayout();
//
// pictureBox1
//
this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
this.pictureBox1.Location = new System.Drawing.Point(22, 28);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(137, 127);
this.pictureBox1.TabIndex = 0;
this.pictureBox1.TabStop = false;
//
// lbl_CopyRight
//
this.lbl_CopyRight.AutoSize = true;
this.lbl_CopyRight.BackColor = System.Drawing.Color.Transparent;
this.lbl_CopyRight.Location = new System.Drawing.Point(181, 34);
this.lbl_CopyRight.Name = "lbl_CopyRight";
this.lbl_CopyRight.Size = new System.Drawing.Size(161, 12);
this.lbl_CopyRight.TabIndex = 4;
this.lbl_CopyRight.Text = "版权所有 (C) ××有限公司";
//
// lbl_FrancePhone
//
this.lbl_FrancePhone.AutoSize = true;
this.lbl_FrancePhone.BackColor = System.Drawing.Color.Transparent;
this.lbl_FrancePhone.Location = new System.Drawing.Point(180, 74);
this.lbl_FrancePhone.Name = "lbl_FrancePhone";
this.lbl_FrancePhone.Size = new System.Drawing.Size(143, 12);
this.lbl_FrancePhone.TabIndex = 5;
this.lbl_FrancePhone.Text = "法国电话:+442032872518";
//
// lbl_ChinaPhone
//
this.lbl_ChinaPhone.AutoSize = true;
this.lbl_ChinaPhone.BackColor = System.Drawing.Color.Transparent;
this.lbl_ChinaPhone.Location = new System.Drawing.Point(180, 119);
this.lbl_ChinaPhone.Name = "lbl_ChinaPhone";
this.lbl_ChinaPhone.Size = new System.Drawing.Size(143, 12);
this.lbl_ChinaPhone.TabIndex = 6;
this.lbl_ChinaPhone.Text = "中国电话:+862151872117";
//
// tabPanel1
//
this.tabPanel1.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(227)))), ((int)(((byte)(242)))));
this.tabPanel1.BaseColorOn = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(227)))), ((int)(((byte)(242)))));
this.tabPanel1.Caption = "";
this.tabPanel1.Controls.Add(this.pictureBox1);
this.tabPanel1.Controls.Add(this.lbl_ChinaPhone);
this.tabPanel1.Controls.Add(this.lbl_CopyRight);
this.tabPanel1.Controls.Add(this.lbl_FrancePhone);
this.tabPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.tabPanel1.Location = new System.Drawing.Point(20, 60);
this.tabPanel1.Name = "tabPanel1";
this.tabPanel1.Opacity = 255;
this.tabPanel1.Size = new System.Drawing.Size(386, 189);
this.tabPanel1.Speed = 1;
this.tabPanel1.TabIndex = 7;
//
// FrmAboutUs
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(426, 269);
this.Controls.Add(this.tabPanel1);
this.Location = new System.Drawing.Point(0, 0);
this.MaximizeBox = false;
this.Name = "FrmAboutUs";
this.Resizable = false;
this.Text = "联系我们";
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.tabPanel1.ResumeLayout(false);
this.tabPanel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Label lbl_CopyRight;
private System.Windows.Forms.Label lbl_FrancePhone;
private System.Windows.Forms.Label lbl_ChinaPhone;
private RibbonStyle.TabPanel tabPanel1;
}
}