水平均分和垂直均分加入提示

This commit is contained in:
pxzleo 2017-09-09 03:14:36 +08:00
parent be09eef794
commit 7d8646b4d8

View File

@ -13,6 +13,7 @@ using System.Threading.Tasks;
using System.Windows.Input;
using Plane.Geography;
using Plane.Windows.Messages;
using System.Windows;
namespace Plane.FormationCreator.ViewModels
{
@ -277,6 +278,10 @@ namespace Plane.FormationCreator.ViewModels
double tlng = 0;
double avgl = 0;
if (Alert.Show("本操作将导致飞机位置重新排列,编号最小的飞机在最左边,您确定要继续吗?", "提示", MessageBoxButton.OKCancel, MessageBoxImage.Warning)
== MessageBoxResult.OK)
{
var selectedCopter = _copterManager.SelectedCopters.FirstOrDefault();
@ -327,7 +332,7 @@ namespace Plane.FormationCreator.ViewModels
}
}
}
///////////////////////
@ -354,6 +359,9 @@ namespace Plane.FormationCreator.ViewModels
double avgl = 0;
if (Alert.Show("本操作将导致飞机位置重新排列,编号最小的飞机在最上边,您确定要继续吗?", "提示", MessageBoxButton.OKCancel, MessageBoxImage.Warning)
== MessageBoxResult.OK)
{
//////////////////////
@ -408,7 +416,7 @@ namespace Plane.FormationCreator.ViewModels
///////////////////////
// await Task.Delay(100); // 如果不等待一段时间,很可能会再触发 DataStreamReceived 事件导致飞行器重新出现在地图上。
}
}));
}
}