を使用して、データ ビューに割り当てられている情報を並べ替えるにはどうすればよいRadioButtons
ですか?
private void btnSearchByGender_Click(object sender, EventArgs e)
{
DataView data = new DataView(pID2dbDataSet.customer);
data.RowFilter = "Gender=" + rdoMale.Select();
customerDataGridView.DataSource = data;
}
これまでのところ、これを取得しましたが、ラジオボタンの機能を選択する方法がわかりません。