EaseFilter Demo Project
EncryptionForm.Designer.cs
Go to the documentation of this file.
1 namespace FileProtector
2 {
3  partial class EncryptedFileForm
4  {
8  private System.ComponentModel.IContainer components = null;
9 
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 
29  private void InitializeComponent()
30  {
31  System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EncryptedFileForm));
32  this.label1 = new System.Windows.Forms.Label();
33  this.textBox_PassPhrase = new System.Windows.Forms.TextBox();
34  this.button_Start = new System.Windows.Forms.Button();
35  this.groupBox1 = new System.Windows.Forms.GroupBox();
36  this.checkBox_UseDefaultIV = new System.Windows.Forms.CheckBox();
37  this.checkBox_DisplayPassword = new System.Windows.Forms.CheckBox();
38  this.textBox_FileName = new System.Windows.Forms.TextBox();
39  this.label3 = new System.Windows.Forms.Label();
40  this.label2 = new System.Windows.Forms.Label();
41  this.button_OpenFile = new System.Windows.Forms.Button();
42  this.groupBox1.SuspendLayout();
43  this.SuspendLayout();
44  //
45  // label1
46  //
47  this.label1.AutoSize = true;
48  this.label1.Location = new System.Drawing.Point(23, 26);
49  this.label1.Name = "label1";
50  this.label1.Size = new System.Drawing.Size(88, 13);
51  this.label1.TabIndex = 0;
52  this.label1.Text = "Password phrase";
53  //
54  // textBox_PassPhrase
55  //
56  this.textBox_PassPhrase.Location = new System.Drawing.Point(172, 23);
57  this.textBox_PassPhrase.Name = "textBox_PassPhrase";
58  this.textBox_PassPhrase.Size = new System.Drawing.Size(206, 20);
59  this.textBox_PassPhrase.TabIndex = 1;
60  this.textBox_PassPhrase.UseSystemPasswordChar = true;
61  //
62  // button_Start
63  //
64  this.button_Start.Location = new System.Drawing.Point(469, 160);
65  this.button_Start.Name = "button_Start";
66  this.button_Start.Size = new System.Drawing.Size(75, 23);
67  this.button_Start.TabIndex = 2;
68  this.button_Start.Text = "Start";
69  this.button_Start.UseVisualStyleBackColor = true;
70  this.button_Start.Click += new System.EventHandler(this.button_Start_Click);
71  //
72  // groupBox1
73  //
74  this.groupBox1.Controls.Add(this.button_OpenFile);
75  this.groupBox1.Controls.Add(this.checkBox_UseDefaultIV);
76  this.groupBox1.Controls.Add(this.checkBox_DisplayPassword);
77  this.groupBox1.Controls.Add(this.textBox_FileName);
78  this.groupBox1.Controls.Add(this.label3);
79  this.groupBox1.Controls.Add(this.label2);
80  this.groupBox1.Controls.Add(this.textBox_PassPhrase);
81  this.groupBox1.Controls.Add(this.label1);
82  this.groupBox1.Location = new System.Drawing.Point(23, 12);
83  this.groupBox1.Name = "groupBox1";
84  this.groupBox1.Size = new System.Drawing.Size(521, 129);
85  this.groupBox1.TabIndex = 3;
86  this.groupBox1.TabStop = false;
87  //
88  // checkBox_UseDefaultIV
89  //
90  this.checkBox_UseDefaultIV.AutoSize = true;
91  this.checkBox_UseDefaultIV.Location = new System.Drawing.Point(407, 55);
92  this.checkBox_UseDefaultIV.Name = "checkBox_UseDefaultIV";
93  this.checkBox_UseDefaultIV.Size = new System.Drawing.Size(95, 17);
94  this.checkBox_UseDefaultIV.TabIndex = 6;
95  this.checkBox_UseDefaultIV.Text = "Use Default IV";
96  this.checkBox_UseDefaultIV.UseVisualStyleBackColor = true;
97  //
98  // checkBox_DisplayPassword
99  //
100  this.checkBox_DisplayPassword.AutoSize = true;
101  this.checkBox_DisplayPassword.Location = new System.Drawing.Point(407, 22);
102  this.checkBox_DisplayPassword.Name = "checkBox_DisplayPassword";
103  this.checkBox_DisplayPassword.Size = new System.Drawing.Size(108, 17);
104  this.checkBox_DisplayPassword.TabIndex = 5;
105  this.checkBox_DisplayPassword.Text = "Display password";
106  this.checkBox_DisplayPassword.UseVisualStyleBackColor = true;
107  this.checkBox_DisplayPassword.CheckedChanged += new System.EventHandler(this.checkBox_DisplayPassword_CheckedChanged);
108  //
109  // textBox_FileName
110  //
111  this.textBox_FileName.Location = new System.Drawing.Point(172, 88);
112  this.textBox_FileName.Name = "textBox_FileName";
113  this.textBox_FileName.Size = new System.Drawing.Size(206, 20);
114  this.textBox_FileName.TabIndex = 4;
115  //
116  // label3
117  //
118  this.label3.AutoSize = true;
119  this.label3.Location = new System.Drawing.Point(23, 88);
120  this.label3.Name = "label3";
121  this.label3.Size = new System.Drawing.Size(52, 13);
122  this.label3.TabIndex = 3;
123  this.label3.Text = "File name";
124  //
125  // label2
126  //
127  this.label2.AutoSize = true;
128  this.label2.Location = new System.Drawing.Point(169, 46);
129  this.label2.Name = "label2";
130  this.label2.Size = new System.Drawing.Size(218, 13);
131  this.label2.TabIndex = 2;
132  this.label2.Text = "(it must be the same as it was set in filter rule)";
133  //
134  // button_OpenFile
135  //
136  this.button_OpenFile.Location = new System.Drawing.Point(407, 86);
137  this.button_OpenFile.Name = "button_OpenFile";
138  this.button_OpenFile.Size = new System.Drawing.Size(75, 23);
139  this.button_OpenFile.TabIndex = 7;
140  this.button_OpenFile.Text = "browse";
141  this.button_OpenFile.UseVisualStyleBackColor = true;
142  this.button_OpenFile.Click += new System.EventHandler(this.button_OpenFile_Click);
143  //
144  // EncryptedFileForm
145  //
146  this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
147  this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
148  this.ClientSize = new System.Drawing.Size(570, 206);
149  this.Controls.Add(this.groupBox1);
150  this.Controls.Add(this.button_Start);
151  this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
152  this.Name = "EncryptedFileForm";
153  this.Text = "EncryptionForm";
154  this.groupBox1.ResumeLayout(false);
155  this.groupBox1.PerformLayout();
156  this.ResumeLayout(false);
157 
158  }
159 
160  #endregion
161 
162  private System.Windows.Forms.Label label1;
163  private System.Windows.Forms.TextBox textBox_PassPhrase;
164  private System.Windows.Forms.Button button_Start;
165  private System.Windows.Forms.GroupBox groupBox1;
166  private System.Windows.Forms.TextBox textBox_FileName;
167  private System.Windows.Forms.Label label3;
168  private System.Windows.Forms.Label label2;
169  private System.Windows.Forms.CheckBox checkBox_DisplayPassword;
170  private System.Windows.Forms.CheckBox checkBox_UseDefaultIV;
171  private System.Windows.Forms.Button button_OpenFile;
172  }
173 }
override void Dispose(bool disposing)
Clean up any resources being used.

Social Network


Services Overview

Architect, implement and test file system filter drivers for a wide range of functionality. We can offer several levels of assistance to meet your specific.

Contact Us

You are welcome to contact us for salse or partnership.

Sales: sales@easefilter.com
Support: support@easefilter.com
Info: info@easefilter.com