摘要:
private void btnFindNext_Click(object sender, EventArgs e) { if (this.bindingSource == null) { return; } PropertyDescriptor property = this.cboProperties.SelectedItem as PropertyDescriptor; if (property == null) { return; } try { if (bindingSource.SupportsSearching) { string find = this.cboFindWhat. 阅读全文