Here are the examples of the csharp api class BSA_Browser.BSABrowser.LoadQuickExtractPaths() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
2 Examples
0
1. Example
View licenseprivate void optionsMenuItem_Click(object sender, EventArgs e) { using (var of = new OptionsForm()) { if (of.ShowDialog(this) == DialogResult.OK) { of.SaveChanges(); Settings.Default.Save(); // Sync changes to UI this.LoadQuickExtractPaths(); } } }
0
2. Example
View licenseprivate void quickExtractsMenuItem_Click(object sender, EventArgs e) { if (quickExtractsMenuItem.MenuItems.Count > 0) return; // Open options with second tab selected using (var of = new OptionsForm(1)) { if (of.ShowDialog(this) == DialogResult.OK) { of.SaveChanges(); Settings.Default.Save(); // Sync changes to UI this.LoadQuickExtractPaths(); } } }