📄 filteroptions.designer.cs
字号:
namespace DiskAnalyzer
{
partial class FilterOptions
{
/// <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()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FilterOptions));
this.textBoxExclude = new System.Windows.Forms.TextBox();
this.textBoxInclude = new System.Windows.Forms.TextBox();
this.comboBoxSize = new System.Windows.Forms.ComboBox();
this.comboBoxOwner = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.comboBoxBytes = new System.Windows.Forms.ComboBox();
this.textBoxSize = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.radioButtonExclude = new System.Windows.Forms.RadioButton();
this.radioButtonInclude = new System.Windows.Forms.RadioButton();
this.buttonClear = new System.Windows.Forms.Button();
this.checkBoxZeroSize = new System.Windows.Forms.CheckBox();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage1 = new System.Windows.Forms.TabPage();
this.label2 = new System.Windows.Forms.Label();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.checkBoxReAnalyze = new System.Windows.Forms.CheckBox();
this.buttonApply = new System.Windows.Forms.Button();
this.checkBoxExportToExcel = new System.Windows.Forms.CheckBox();
this.groupBox1.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabPage1.SuspendLayout();
this.tabPage2.SuspendLayout();
this.SuspendLayout();
//
// textBoxExclude
//
this.textBoxExclude.Location = new System.Drawing.Point(71, 45);
this.textBoxExclude.Name = "textBoxExclude";
this.textBoxExclude.Size = new System.Drawing.Size(349, 20);
this.textBoxExclude.TabIndex = 1;
//
// textBoxInclude
//
this.textBoxInclude.Location = new System.Drawing.Point(71, 19);
this.textBoxInclude.Name = "textBoxInclude";
this.textBoxInclude.Size = new System.Drawing.Size(349, 20);
this.textBoxInclude.TabIndex = 3;
//
// comboBoxSize
//
this.comboBoxSize.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxSize.Enabled = false;
this.comboBoxSize.FormattingEnabled = true;
this.comboBoxSize.Items.AddRange(new object[] {
"Greater Than Equla To",
"Less Than Equal To",
"Greater Than",
"Less Than",
"Equal To",
"Not Equal To",
"",
"",
""});
this.comboBoxSize.Location = new System.Drawing.Point(83, 12);
this.comboBoxSize.Name = "comboBoxSize";
this.comboBoxSize.Size = new System.Drawing.Size(121, 21);
this.comboBoxSize.TabIndex = 5;
//
// comboBoxOwner
//
this.comboBoxOwner.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxOwner.Enabled = false;
this.comboBoxOwner.FormattingEnabled = true;
this.comboBoxOwner.Items.AddRange(new object[] {
"All"});
this.comboBoxOwner.Location = new System.Drawing.Point(85, 145);
this.comboBoxOwner.Name = "comboBoxOwner";
this.comboBoxOwner.Size = new System.Drawing.Size(121, 21);
this.comboBoxOwner.TabIndex = 8;
//
// label3
//
this.label3.AutoSize = true;
this.label3.Enabled = false;
this.label3.Location = new System.Drawing.Point(41, 148);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(41, 13);
this.label3.TabIndex = 7;
this.label3.Text = "Owner:";
//
// label4
//
this.label4.Location = new System.Drawing.Point(6, 70);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(416, 19);
this.label4.TabIndex = 11;
this.label4.Text = "Include and Exclude Files are comma seperate list of file exenstion. Example: .ex" +
"e, .avi";
//
// comboBoxBytes
//
this.comboBoxBytes.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBoxBytes.FormattingEnabled = true;
this.comboBoxBytes.Items.AddRange(new object[] {
"By",
"KB",
"MB",
"GB"});
this.comboBoxBytes.Location = new System.Drawing.Point(383, 12);
this.comboBoxBytes.Name = "comboBoxBytes";
this.comboBoxBytes.Size = new System.Drawing.Size(56, 21);
this.comboBoxBytes.TabIndex = 12;
//
// textBoxSize
//
this.textBoxSize.Location = new System.Drawing.Point(213, 12);
this.textBoxSize.Name = "textBoxSize";
this.textBoxSize.Size = new System.Drawing.Size(164, 20);
this.textBoxSize.TabIndex = 13;
this.textBoxSize.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBoxSize_KeyDown);
//
// groupBox1
//
this.groupBox1.Controls.Add(this.radioButtonExclude);
this.groupBox1.Controls.Add(this.radioButtonInclude);
this.groupBox1.Controls.Add(this.textBoxInclude);
this.groupBox1.Controls.Add(this.label4);
this.groupBox1.Controls.Add(this.textBoxExclude);
this.groupBox1.Location = new System.Drawing.Point(12, 39);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(428, 100);
this.groupBox1.TabIndex = 14;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Files";
//
// radioButtonExclude
//
this.radioButtonExclude.AutoSize = true;
this.radioButtonExclude.Location = new System.Drawing.Point(6, 46);
this.radioButtonExclude.Name = "radioButtonExclude";
this.radioButtonExclude.Size = new System.Drawing.Size(63, 17);
this.radioButtonExclude.TabIndex = 4;
this.radioButtonExclude.Text = "Exclude";
this.radioButtonExclude.UseVisualStyleBackColor = true;
//
// radioButtonInclude
//
this.radioButtonInclude.AutoSize = true;
this.radioButtonInclude.Checked = true;
this.radioButtonInclude.Location = new System.Drawing.Point(6, 19);
this.radioButtonInclude.Name = "radioButtonInclude";
this.radioButtonInclude.Size = new System.Drawing.Size(60, 17);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -