2016-09-21 104 views
0

這是我的一段代碼我想在我的LoadItemTrackingGrid()中切換一個大綱,請給我一個所有大綱的快捷方式。如何在Visual Studio中只勾畫一個切換

protected void LoadItemTrackingGrid(object sender, EventArgs e) 
{ 
    LoadItemTrackingGrid(); 
} 

private bool IsEditModeProductGroup() 
{ 
    return (!string.IsNullOrEmpty(lblParentProductId.Text)); 
} 

protected void lnkProductGroupAdd_OnClick(object sender, EventArgs e) 
{ 
    if (ddlProductGroup.SelectedIndex == 0) 
     txtProductGroupName.Text = string.Empty; 
    else 
     txtProductGroupName.Text = ddlProductGroup.SelectedItem.Text; 
    popupProductGroup.Show(); 
    txtProductGroupName.Focus(); 
} 

protected void btnSaveProductGroup_onClick(object sender, EventArgs e) 
{ 
    if (!IsValidProductGroup()) 
    { 
     popupProductGroup.Show(); 
     return; 
    } 
    int? ParentProductId = SaveProductGroup(); 
    LoadProductGroup(); 
    ddlProductGroup.SelectedValue = ParentProductId.ToString(); 
    ddlProductGroup_OnSelectedIndexChanged(null, null); 
} 
+0

親愛upvoter,只是因爲它的代碼可能並不意味着這是一個很好的問題。特別是當它是關於工具中的鍵盤快捷方式時 – MickyD

回答

相關問題