飞机文本日志前加入飞机名称

This commit is contained in:
pxzleo 2017-04-10 00:10:34 +08:00
parent 24db6c7dde
commit c1f72272b1

View File

@ -14,7 +14,8 @@ namespace Plane.Copters
private void _internalCopter_GetLogDataEvent(string log)
{
StatusText = log;
//飞机消息日志,后面需要改为记录方式
StatusText =Name+":"+log;
}
private void _internalCopter_ReceiveDataStreamEvent(object sender, byte StreamType)