-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlert.Designer.cs
More file actions
99 lines (93 loc) · 4.61 KB
/
Alert.Designer.cs
File metadata and controls
99 lines (93 loc) · 4.61 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
namespace Bit_Locker
{
partial class Alert
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Alert));
this.label1 = new System.Windows.Forms.Label();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.ContinueForceButton = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Transparent;
this.label1.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.ForeColor = System.Drawing.Color.OrangeRed;
this.label1.Location = new System.Drawing.Point(24, 49);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(247, 100);
this.label1.TabIndex = 0;
this.label1.Text = "当普通锁定无效时才考虑强制锁定。\n强制锁定会卸载目标分区,请先确保:\n1.已保存该分区上的文件;\n2.已关闭正在使用该分区的程序。\n是否继续?";
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// pictureBox1
//
this.pictureBox1.BackgroundImage = global::Bit_Locker.Properties.Resources.warning_1;
this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
this.pictureBox1.Location = new System.Drawing.Point(116, 8);
this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(47, 37);
this.pictureBox1.TabIndex = 1;
this.pictureBox1.TabStop = false;
//
// ContinueForceButton
//
this.ContinueForceButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.ContinueForceButton.Font = new System.Drawing.Font("Microsoft YaHei UI", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.ContinueForceButton.Location = new System.Drawing.Point(105, 153);
this.ContinueForceButton.Name = "ContinueForceButton";
this.ContinueForceButton.Size = new System.Drawing.Size(75, 31);
this.ContinueForceButton.TabIndex = 2;
this.ContinueForceButton.Text = "继续";
this.ContinueForceButton.UseVisualStyleBackColor = true;
//
// Alert
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(288, 190);
this.Controls.Add(this.ContinueForceButton);
this.Controls.Add(this.label1);
this.Controls.Add(this.pictureBox1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "Alert";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "警告";
this.TopMost = true;
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.Button ContinueForceButton;
}
}