SEBWIN-425: Ensured columns are not sortable for configuration of third-party applications.

This commit is contained in:
Damian Büchel 2020-10-21 16:28:45 +02:00
parent 5d7630432e
commit f6a3cb485b
2 changed files with 899 additions and 895 deletions

View file

@ -159,10 +159,6 @@ namespace SebWindowsConfig
this.tabControlApplications = new System.Windows.Forms.TabControl();
this.tabPagePermittedProcesses = new System.Windows.Forms.TabPage();
this.dataGridViewPermittedProcesses = new System.Windows.Forms.DataGridView();
this.Active = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.OS = new System.Windows.Forms.DataGridViewComboBoxColumn();
this.Executable = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Title = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.buttonChoosePermittedProcess = new System.Windows.Forms.Button();
this.buttonChoosePermittedApplication = new System.Windows.Forms.Button();
this.buttonRemovePermittedProcess = new System.Windows.Forms.Button();
@ -223,10 +219,6 @@ namespace SebWindowsConfig
this.buttonRemoveProhibitedProcess = new System.Windows.Forms.Button();
this.buttonAddProhibitedProcess = new System.Windows.Forms.Button();
this.dataGridViewProhibitedProcesses = new System.Windows.Forms.DataGridView();
this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.dataGridViewComboBoxColumn1 = new System.Windows.Forms.DataGridViewComboBoxColumn();
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.checkBoxMonitorProcesses = new System.Windows.Forms.CheckBox();
this.tabPageExam = new System.Windows.Forms.TabPage();
this.groupBox17 = new System.Windows.Forms.GroupBox();
@ -456,6 +448,14 @@ namespace SebWindowsConfig
this.editDuplicateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.configureClientToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.applyAndStartSEBToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.dataGridViewComboBoxColumn1 = new System.Windows.Forms.DataGridViewComboBoxColumn();
this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Active = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.OS = new System.Windows.Forms.DataGridViewComboBoxColumn();
this.Executable = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Title = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tabPageHookedKeys.SuspendLayout();
this.groupBoxFunctionKeys.SuspendLayout();
this.groupBoxSpecialKeys.SuspendLayout();
@ -2202,32 +2202,6 @@ namespace SebWindowsConfig
this.dataGridViewPermittedProcesses.CurrentCellDirtyStateChanged += new System.EventHandler(this.dataGridViewPermittedProcesses_CurrentCellDirtyStateChanged);
this.dataGridViewPermittedProcesses.SelectionChanged += new System.EventHandler(this.dataGridViewPermittedProcesses_SelectionChanged);
//
// Active
//
this.Active.HeaderText = "Active";
this.Active.Name = "Active";
this.Active.Width = 80;
//
// OS
//
this.OS.HeaderText = "OS";
this.OS.Items.AddRange(new object[] {
"OS X",
"Win"});
this.OS.Name = "OS";
//
// Executable
//
this.Executable.HeaderText = "Executable";
this.Executable.Name = "Executable";
this.Executable.Width = 450;
//
// Title
//
this.Title.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Title.HeaderText = "Title";
this.Title.Name = "Title";
//
// buttonChoosePermittedProcess
//
this.buttonChoosePermittedProcess.Location = new System.Drawing.Point(1004, 179);
@ -2977,33 +2951,6 @@ namespace SebWindowsConfig
this.dataGridViewProhibitedProcesses.CurrentCellDirtyStateChanged += new System.EventHandler(this.dataGridViewProhibitedProcesses_CurrentCellDirtyStateChanged);
this.dataGridViewProhibitedProcesses.SelectionChanged += new System.EventHandler(this.dataGridViewProhibitedProcesses_SelectionChanged);
//
// dataGridViewCheckBoxColumn1
//
this.dataGridViewCheckBoxColumn1.HeaderText = "Active";
this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
this.dataGridViewCheckBoxColumn1.Width = 80;
//
// dataGridViewComboBoxColumn1
//
this.dataGridViewComboBoxColumn1.HeaderText = "OS";
this.dataGridViewComboBoxColumn1.Items.AddRange(new object[] {
"OS X",
"Win"});
this.dataGridViewComboBoxColumn1.Name = "dataGridViewComboBoxColumn1";
this.dataGridViewComboBoxColumn1.Width = 120;
//
// dataGridViewTextBoxColumn1
//
this.dataGridViewTextBoxColumn1.HeaderText = "Executable";
this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
this.dataGridViewTextBoxColumn1.Width = 450;
//
// dataGridViewTextBoxColumn2
//
this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.dataGridViewTextBoxColumn2.HeaderText = "Description";
this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
//
// checkBoxMonitorProcesses
//
this.checkBoxMonitorProcesses.AutoSize = true;
@ -5924,6 +5871,63 @@ namespace SebWindowsConfig
this.applyAndStartSEBToolStripMenuItem.Visible = false;
this.applyAndStartSEBToolStripMenuItem.Click += new System.EventHandler(this.applyAndStartSEBToolStripMenuItem_Click);
//
// dataGridViewCheckBoxColumn1
//
this.dataGridViewCheckBoxColumn1.HeaderText = "Active";
this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
this.dataGridViewCheckBoxColumn1.Width = 80;
//
// dataGridViewComboBoxColumn1
//
this.dataGridViewComboBoxColumn1.HeaderText = "OS";
this.dataGridViewComboBoxColumn1.Items.AddRange(new object[] {
"OS X",
"Win"});
this.dataGridViewComboBoxColumn1.Name = "dataGridViewComboBoxColumn1";
this.dataGridViewComboBoxColumn1.Width = 120;
//
// dataGridViewTextBoxColumn1
//
this.dataGridViewTextBoxColumn1.HeaderText = "Executable";
this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
this.dataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.dataGridViewTextBoxColumn1.Width = 450;
//
// dataGridViewTextBoxColumn2
//
this.dataGridViewTextBoxColumn2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.dataGridViewTextBoxColumn2.HeaderText = "Description";
this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
this.dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
//
// Active
//
this.Active.HeaderText = "Active";
this.Active.Name = "Active";
this.Active.Width = 80;
//
// OS
//
this.OS.HeaderText = "OS";
this.OS.Items.AddRange(new object[] {
"OS X",
"Win"});
this.OS.Name = "OS";
//
// Executable
//
this.Executable.HeaderText = "Executable";
this.Executable.Name = "Executable";
this.Executable.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.Executable.Width = 450;
//
// Title
//
this.Title.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Title.HeaderText = "Title";
this.Title.Name = "Title";
this.Title.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
//
// SebWindowsConfigForm
//
this.AllowDrop = true;
@ -6405,14 +6409,6 @@ namespace SebWindowsConfig
private System.Windows.Forms.Label PermittedProcessOriginalNameLabel;
private System.Windows.Forms.DataGridViewCheckBoxColumn ArgumentActive;
private System.Windows.Forms.DataGridViewTextBoxColumn ArgumentParameter;
private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
private System.Windows.Forms.DataGridViewComboBoxColumn dataGridViewComboBoxColumn1;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
private System.Windows.Forms.DataGridViewCheckBoxColumn Active;
private System.Windows.Forms.DataGridViewComboBoxColumn OS;
private System.Windows.Forms.DataGridViewTextBoxColumn Executable;
private System.Windows.Forms.DataGridViewTextBoxColumn Title;
private System.Windows.Forms.TextBox textBoxProhibitedProcessOriginalName;
private System.Windows.Forms.Label ProhibitedProcessOriginalNameLabel;
private System.Windows.Forms.CheckBox checkBoxShowReloadWarningNewWindow;
@ -6481,6 +6477,14 @@ namespace SebWindowsConfig
private System.Windows.Forms.GroupBox groupBox18;
private System.Windows.Forms.Label label24;
private System.Windows.Forms.ComboBox comboBoxUrlPolicyMainWindow;
private System.Windows.Forms.DataGridViewCheckBoxColumn Active;
private System.Windows.Forms.DataGridViewComboBoxColumn OS;
private System.Windows.Forms.DataGridViewTextBoxColumn Executable;
private System.Windows.Forms.DataGridViewTextBoxColumn Title;
private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
private System.Windows.Forms.DataGridViewComboBoxColumn dataGridViewComboBoxColumn1;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
}
}

File diff suppressed because it is too large Load diff