private void button_Dell(BoxExchangeEditor bx, BoxExchangeEditor bx_other, List <string> src) { if (bx.TargetBox.SelectedItem == null) { return; } // var item1 = bx.TargetBox.SelectedItems.OfType <StringItem>().FirstOrDefault(item => item.Value == "設定"); var item2 = bx_other.TargetBox.Items.OfType <StringItem>().FirstOrDefault(item => item.Value == "設定"); if (item1 != null && item2 == null) { MessageBox.Show("設定は上部表示ボタンか右クリック表示項目のどちらかに必要です"); return; } bx.bxDeleteItems(bx.TargetBox); reLoadButtonItem(bx, src); }
private void button_Del(BoxExchangeEditor bx, BoxExchangeEditor bx_other, List<string> src) { if (bx.TargetBox.SelectedItem == null) return; // var item1 = bx.TargetBox.SelectedItems.OfType<StringItem>().FirstOrDefault(item => item.Value == "設定"); var item2 = bx_other.TargetBox.Items.OfType<StringItem>().FirstOrDefault(item => item.Value == "設定"); if (item1 != null && item2 == null) { MessageBox.Show("設定は上部表示ボタンか右クリック表示項目のどちらかに必要です"); return; } bx.bxDeleteItems(bx.TargetBox); reLoadButtonItem(bx, src); }