private void setCurrentAT(Antetype antetype)
 {
     this.currentAntetype = antetype;
     if (currentAntetype != null)
     {
         String name = currentAntetype.name;
         lable_AT.Text = name;
         showFunction("角色原型ID:" + antetype.GetID() + ",引用自:" + (antetype.Actor != null ? (antetype.Actor.name + ",ID:" + antetype.Actor.GetID()) : "空") + ",被使用次数:" + currentAntetype.getUsedTime());
     }
     else
     {
         lable_AT.Text = "";
         showFunction("");
     }
 }