CSL.OptionsWindow.OtherDownloadTextBox_TextChanged C# (CSharp) Method

OtherDownloadTextBox_TextChanged() private method

private OtherDownloadTextBox_TextChanged ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void OtherDownloadTextBox_TextChanged(object sender, EventArgs e)
        {
            if (!OtherDownloadTextBox.Text.EndsWith("\\"))
                OtherDownloadTextBox.Text = OtherDownloadTextBox.Text + "\\";

            SettingsHandler.SetOtherDownloadDirectory(OtherDownloadTextBox.Text);
        }
OptionsWindow