Here are the examples of the csharp api class BSA_Browser.BSABrowser.OpenArchives(bool, params string[]) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
3 Examples
0
1. Example
View licenseprivate void btnOpen_Click(object sender, EventArgs e) { if (OpenArchiveDialog.ShowDialog(this) == DialogResult.OK) this.OpenArchives(true, OpenArchiveDialog.FileNames); }
0
2. Example
View licenseprivate void openArchiveMenuItem_Click(object sender, EventArgs e) { if (OpenArchiveDialog.ShowDialog(this) == DialogResult.OK) this.OpenArchives(true, OpenArchiveDialog.FileNames); }
0
3. Example
View licenseprivate void File_DragDrop(object sender, DragEventArgs e) { this.OpenArchives(true, ((string[])e.Data.GetData(DataFormats.FileDrop)) .Where(x => IsSupportedFile(x)) .ToArray()); }