本文整理汇总了C#中Participant.AddAttack方法的典型用法代码示例。如果您正苦于以下问题:C# Participant.AddAttack方法的具体用法?C# Participant.AddAttack怎么用?C# Participant.AddAttack使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Participant
的用法示例。
在下文中一共展示了Participant.AddAttack方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddNewAttack
private void AddNewAttack(Attack newAttack, Participant participant)
{
if (participant.CurrentAttacks.Any())
{
var message = String.Format("{0} already has an attack prepared. Switch attack to new attack?\n\nPress \"Yes\" to switch {0}'s current attack from {1} to {2}.\nPress \"No\" to add {2} to {0}'s attacks, in addition to {1}.\nPress \"Cancel\" to not add the attack to {0}'s current attacks.", participant.Name, participant.CurrentAttacksToString(), newAttack.Name);
var result = MessageBox.Show(message, "Attack already there", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Information);
if (result == DialogResult.Yes)
foreach (var attack in participant.Attacks)
attack.Prepped = false;
if (result == DialogResult.No || result == DialogResult.Yes)
newAttack.Prepped = true;
}
else
{
newAttack.Prepped = true;
}
participant.AddAttack(newAttack);
}
示例2: EditAttack
private void EditAttack(Attack newAttack, Participant participant, Attack attackToEdit)
{
participant.Attacks.Remove(attackToEdit);
if (participant.CurrentAttacks.Any())
{
var message = String.Format("{0} already has an attack prepared. Switch attack to new attack?", participant.Name);
SwitchCurrentAttack(newAttack, participant, message);
}
else
{
newAttack.Prepped = true;
}
participant.AddAttack(newAttack);
}