Removed old references to properties. Set some fields to private.

This commit is contained in:
Travis Nickles 2018-02-12 00:00:27 -06:00
parent ff3ab9905c
commit 4cb0548947
2 changed files with 2 additions and 4 deletions

View File

@ -1153,9 +1153,7 @@
// languagePackComboBox1
//
resources.ApplyResources(this.languagePackComboBox1, "languagePackComboBox1");
this.languagePackComboBox1.LanguageAssemblyName = "DS4Windows.resources.dll";
this.languagePackComboBox1.Name = "languagePackComboBox1";
this.languagePackComboBox1.ProbingPath = "Lang";
this.languagePackComboBox1.SelectedValueChanged += new System.EventHandler(this.languagePackComboBox1_SelectedValueChanged);
//
// flowLayoutPanel1

View File

@ -17,10 +17,10 @@ namespace DS4Windows.DS4Forms
private TaskCompletionSource<bool> LanguageListInitialized = new TaskCompletionSource<bool>();
// If probing path has been changed in App.config, add the same string here.
public string ProbingPath = "Lang";
private string ProbingPath = "Lang";
// Filter language assembly file names in order to ont include irrelevant assemblies to the combo box.
public string LanguageAssemblyName = "DS4Windows.resources.dll";
private string LanguageAssemblyName = "DS4Windows.resources.dll";
[Category("Action")]
[Description("Fires when the combo box selected index is changed.")]