1
0
mirror of https://github.com/Ylianst/MeshCentralRouter synced 2025-12-11 05:43:45 +00:00

Added support for Windows built-in OpenSSL.

This commit is contained in:
Ylian Saint-Hilaire
2021-03-02 18:32:47 -08:00
parent 31a62a585f
commit bb6c85c5a7
23 changed files with 25922 additions and 17 deletions

View File

@@ -32,6 +32,7 @@
this.cancelButton = new System.Windows.Forms.Button();
this.okButton = new System.Windows.Forms.Button();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.applicationComboBox = new System.Windows.Forms.ComboBox();
this.folderButton = new System.Windows.Forms.Button();
this.appNameLabel = new System.Windows.Forms.Label();
this.appLinkLabel = new System.Windows.Forms.LinkLabel();
@@ -61,6 +62,7 @@
// groupBox1
//
resources.ApplyResources(this.groupBox1, "groupBox1");
this.groupBox1.Controls.Add(this.applicationComboBox);
this.groupBox1.Controls.Add(this.folderButton);
this.groupBox1.Controls.Add(this.appNameLabel);
this.groupBox1.Controls.Add(this.appLinkLabel);
@@ -71,6 +73,14 @@
this.groupBox1.Name = "groupBox1";
this.groupBox1.TabStop = false;
//
// applicationComboBox
//
resources.ApplyResources(this.applicationComboBox, "applicationComboBox");
this.applicationComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.applicationComboBox.FormattingEnabled = true;
this.applicationComboBox.Name = "applicationComboBox";
this.applicationComboBox.SelectedIndexChanged += new System.EventHandler(this.applicationComboBox_SelectedIndexChanged);
//
// folderButton
//
resources.ApplyResources(this.folderButton, "folderButton");
@@ -149,5 +159,6 @@
private System.Windows.Forms.Label label1;
private System.Windows.Forms.OpenFileDialog openFileDialog;
private System.Windows.Forms.Button folderButton;
private System.Windows.Forms.ComboBox applicationComboBox;
}
}