protected override bool RunDialog(IntPtr hwndOwner) { using (ShellStoreForm frm = new ShellStoreForm(this.ShellPath, this.IgnoredKeyNames)) { bool flag = frm.ShowDialog() == DialogResult.OK; if (flag) { this.SelectedKeyNames = frm.SelectedKeyNames; } return(flag); } }
protected override bool RunDialog(IntPtr hwndOwner) { using (ShellStoreForm frm = new ShellStoreForm(this.ShellPath, this.Filter, this.IsReference)) { frm.TopMost = AppConfig.TopMost; bool flag = frm.ShowDialog() == DialogResult.OK; if (flag) { this.SelectedKeyNames = frm.SelectedKeyNames; } return(flag); } }