我正在從按鈕單擊事件發出Web請求,並從組合框索引更改事件中選擇類別。如何將我在按鈕點擊事件中所做的請求鏈接到從組合框選擇的索引更改事件中進行的類別選擇?C#ebay sdk ComboBox將selectedindexchanged事件鏈接到按鈕單擊
private void button3_Click_1(object sender, EventArgs e)
{
CustomFindingService service = new CustomFindingService();
service.Url = "https://svcs.ebay.com/services/search/FindingService/v1?";
FindCompletedItemsRequest request = new FindCompletedItemsRequest();
request.categoryId = selectedItem.ToString();
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
if (selectedItem.ToString() == "Cell Phones & Accessories")
{
this.comboBox2.Text = "";
comboBox2.Items.Clear();
this.comboBox2.Items.AddRange(catCellPhones2);
selectedItem = "15032";
}
}
什麼是'selectedItem'?什麼是'catCellPhones2'?爲什麼你不能在'button3_Click_1'事件中做'comboBox2.SelectedValue'? –
我有5個組合框,每個組合框在上一個組合框的項目選擇中填充一個類別列表。我想爲所有組合框中的最新選定項目發出一個Web請求。我想全球化按鈕點擊事件中的請求,並從組合框選擇要更改的事件中選擇要請求的類別。 – Erc