修复了起飞的bug
添加了返航电压 添加了版本控制中飞机数量
This commit is contained in:
parent
e2dcb04d62
commit
1e69baaf9d
@ -7,6 +7,7 @@ using System.Collections.ObjectModel;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using Plane.FormationCreator.Util;
|
||||||
|
|
||||||
namespace Plane.FormationCreator.Formation
|
namespace Plane.FormationCreator.Formation
|
||||||
{
|
{
|
||||||
@ -21,18 +22,18 @@ namespace Plane.FormationCreator.Formation
|
|||||||
{
|
{
|
||||||
|
|
||||||
////给第三方时候限制数量和时间用
|
////给第三方时候限制数量和时间用
|
||||||
// DateTime dateTime2019 = DateTime.Parse("2019-06-20");
|
DateTime dateTime2019 = DateTime.Parse("2019-06-20");
|
||||||
//
|
|
||||||
// if (DateTime.UtcNow > dateTime2019)
|
if (DateTime.UtcNow > dateTime2019)
|
||||||
// {
|
{
|
||||||
// throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
// }
|
}
|
||||||
//
|
|
||||||
//
|
|
||||||
// if (this.Count >= 50)
|
if (this.Count >= VersionControl.CopterUpperLimit)
|
||||||
// {
|
{
|
||||||
// return 0;
|
return 0;
|
||||||
// }
|
}
|
||||||
|
|
||||||
int _index = 0;
|
int _index = 0;
|
||||||
if (this.Count == 0)
|
if (this.Count == 0)
|
||||||
|
@ -100,7 +100,6 @@ namespace Plane.FormationCreator.Formation
|
|||||||
var copter = info.Copter;
|
var copter = info.Copter;
|
||||||
|
|
||||||
//等待起飞时间
|
//等待起飞时间
|
||||||
Windows.Messages.Message.Show($"{copter.Name}:等待起飞 = {info.TakeOffWaitTime}");
|
|
||||||
while ((int)ts.TotalMilliseconds < (int)info.TakeOffWaitTime * 1000)
|
while ((int)ts.TotalMilliseconds < (int)info.TakeOffWaitTime * 1000)
|
||||||
{
|
{
|
||||||
if (_flightTaskManager.IsPaused == true)
|
if (_flightTaskManager.IsPaused == true)
|
||||||
@ -138,12 +137,10 @@ namespace Plane.FormationCreator.Formation
|
|||||||
ts = dtNow - dtLastTime;
|
ts = dtNow - dtLastTime;
|
||||||
FlightTask task = _flightTaskManager.CurrentRunningTask;
|
FlightTask task = _flightTaskManager.CurrentRunningTask;
|
||||||
|
|
||||||
Windows.Messages.Message.Show($"{copter.Name}:等待到达飞行时间 = {task.TakeOffTime}");
|
|
||||||
while (ts.TotalMilliseconds < task.TakeOffTime * 1000)
|
while (ts.TotalMilliseconds < task.TakeOffTime * 1000)
|
||||||
{
|
{
|
||||||
if (_flightTaskManager.IsPaused == true)
|
if (_flightTaskManager.IsPaused == true)
|
||||||
{
|
{
|
||||||
//Windows.Messages.Message.Show($"{copter.Name}:悬停");
|
|
||||||
await info.Copter.HoverAsync();
|
await info.Copter.HoverAsync();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -42,15 +42,17 @@
|
|||||||
|
|
||||||
<c:MetroWindow.RightWindowCommands>
|
<c:MetroWindow.RightWindowCommands>
|
||||||
<c:WindowCommands>
|
<c:WindowCommands>
|
||||||
<Button Content="切换地图" Command="{Binding ChangeMapModeCommand}"></Button>
|
|
||||||
<Button Content="{Binding AppEx.ShowModifyTaskView, Converter={StaticResource ShowModifyTaskViewButtonContentConverter}}"
|
<Button Content="{Binding AppEx.ShowModifyTaskView, Converter={StaticResource ShowModifyTaskViewButtonContentConverter}}"
|
||||||
Command="{Binding ShowOrHideModifyTaskViewCommand}" />
|
Command="{Binding ShowOrHideModifyTaskViewCommand}" />
|
||||||
|
<Button Content="切换地图"
|
||||||
|
Command="{Binding ChangeMapModeCommand}"/>
|
||||||
<Button Content="重启监听"
|
<Button Content="重启监听"
|
||||||
Visibility="Collapsed"
|
Visibility="Collapsed"
|
||||||
Command="{Binding RestartListeningCommand}" />
|
Command="{Binding RestartListeningCommand}" />
|
||||||
<Button Content="{Binding SwitchVelocityModeButtonContent}"
|
<Button Content="{Binding SwitchVelocityModeButtonContent}"
|
||||||
|
Command="{Binding SwitchVelocityModeCommand}"
|
||||||
Command="{Binding SwitchVelocityModeCommand}" />
|
Visibility="Collapsed"/>
|
||||||
<!--// 林俊清, 20150930, 不分这些模式了。
|
<!--// 林俊清, 20150930, 不分这些模式了。
|
||||||
<Button Content="进入任务模式"
|
<Button Content="进入任务模式"
|
||||||
Command="{Binding SwitchAppModeCommand}"
|
Command="{Binding SwitchAppModeCommand}"
|
||||||
@ -62,7 +64,8 @@
|
|||||||
Visibility="{Binding Source={x:Static local:AppEx.Current}, Path=AppMode, Converter={StaticResource AppModeToVisibilityConverter}, ConverterParameter=SwitchToControllingCoptersModeButton}" />-->
|
Visibility="{Binding Source={x:Static local:AppEx.Current}, Path=AppMode, Converter={StaticResource AppModeToVisibilityConverter}, ConverterParameter=SwitchToControllingCoptersModeButton}" />-->
|
||||||
<Button Name="btnGoHome"
|
<Button Name="btnGoHome"
|
||||||
Content="回家"
|
Content="回家"
|
||||||
Click="btnGoHome_Click" />
|
Click="btnGoHome_Click"
|
||||||
|
Visibility="Collapsed"/>
|
||||||
<Button Name="btnRefreshMap"
|
<Button Name="btnRefreshMap"
|
||||||
Content="刷新地图"
|
Content="刷新地图"
|
||||||
Visibility="Collapsed"
|
Visibility="Collapsed"
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
xmlns:local="clr-namespace:Plane.FormationCreator"
|
xmlns:local="clr-namespace:Plane.FormationCreator"
|
||||||
mc:Ignorable="d"
|
mc:Ignorable="d"
|
||||||
Title="修改参数" Height="418.215" Width="715.206" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
|
Title="修改参数" Height="469.53" Width="710.075" ResizeMode="NoResize" WindowStartupLocation="CenterScreen">
|
||||||
<Grid Margin="0,0,5,3.5">
|
<Grid Margin="0,0,5,3.5">
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition/>
|
<ColumnDefinition/>
|
||||||
@ -32,6 +32,10 @@
|
|||||||
<Button Content="开关灯" Tag="NTF_G_OFF" Click="Modify_Select" Width="130"/>
|
<Button Content="开关灯" Tag="NTF_G_OFF" Click="Modify_Select" Width="130"/>
|
||||||
<Label Content="_NTF_G_OFF"/>
|
<Label Content="_NTF_G_OFF"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
<StackPanel Orientation="Horizontal" Margin="2">
|
||||||
|
<Button Content="返航电压" Tag="FS_BATT_VOLTAGE" Click="Modify_Select" Width="130"/>
|
||||||
|
<Label Content="_FS_BATT_VOLTAGE"/>
|
||||||
|
</StackPanel>
|
||||||
</WrapPanel>
|
</WrapPanel>
|
||||||
|
|
||||||
<StackPanel Name="hide_panel">
|
<StackPanel Name="hide_panel">
|
||||||
@ -80,8 +84,10 @@
|
|||||||
|
|
||||||
<StackPanel Grid.Column="1" HorizontalAlignment="Center" Orientation ="Horizontal">
|
<StackPanel Grid.Column="1" HorizontalAlignment="Center" Orientation ="Horizontal">
|
||||||
<WrapPanel VerticalAlignment="Center" Orientation="Vertical" >
|
<WrapPanel VerticalAlignment="Center" Orientation="Vertical" >
|
||||||
<Label x:Name="label" Content="参数名称" Margin="5,0,5,5"/>
|
<Label x:Name="label" Content="参数" Margin="5,0,5,5"/>
|
||||||
<TextBox x:Name="textParamName" Width="160" Margin="5" />
|
<TextBox x:Name="textParamName" Width="160" Margin="5" />
|
||||||
|
<Label x:Name="label_cn" Content="描述" Margin="5,0,5,5"/>
|
||||||
|
<TextBox x:Name="textParamName_cn" Width="160" Margin="5" IsReadOnly="True"/>
|
||||||
<Label x:Name="label_Copy" Content="参数值" Margin="5"/>
|
<Label x:Name="label_Copy" Content="参数值" Margin="5"/>
|
||||||
<TextBox x:Name="textParamValue" Margin="5"/>
|
<TextBox x:Name="textParamValue" Margin="5"/>
|
||||||
<Button x:Name="btnModify" Content="修改" Width="100" Margin="10" Click="btnModify_Click"/>
|
<Button x:Name="btnModify" Content="修改" Width="100" Margin="10" Click="btnModify_Click"/>
|
||||||
|
@ -29,6 +29,9 @@ namespace Plane.FormationCreator
|
|||||||
hide_panel.Visibility = Visibility.Collapsed;
|
hide_panel.Visibility = Visibility.Collapsed;
|
||||||
textParamName.IsReadOnly = true;
|
textParamName.IsReadOnly = true;
|
||||||
btnLoad.Visibility = Visibility.Collapsed;
|
btnLoad.Visibility = Visibility.Collapsed;
|
||||||
|
|
||||||
|
label.Visibility = Visibility.Collapsed;
|
||||||
|
textParamName.Visibility = Visibility.Collapsed;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -41,6 +44,7 @@ namespace Plane.FormationCreator
|
|||||||
private void Modify_Select(object sender, RoutedEventArgs e)
|
private void Modify_Select(object sender, RoutedEventArgs e)
|
||||||
{
|
{
|
||||||
textParamName.Text = ((Button)sender).Tag.ToString();
|
textParamName.Text = ((Button)sender).Tag.ToString();
|
||||||
|
textParamName_cn.Text = ((Button)sender).Content.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void btnLoad_Click(object sender, RoutedEventArgs e)
|
private void btnLoad_Click(object sender, RoutedEventArgs e)
|
||||||
|
@ -10,16 +10,31 @@ namespace Plane.FormationCreator.Util
|
|||||||
public static class VersionControl
|
public static class VersionControl
|
||||||
{
|
{
|
||||||
public static int Version = 0;
|
public static int Version = 0;
|
||||||
|
/// <summary>
|
||||||
|
/// 是否是完整版本 仅在Version = 255时为完整版本
|
||||||
|
/// </summary>
|
||||||
public static bool IsFullVersion = false;
|
public static bool IsFullVersion = false;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 默认的飞机上限
|
||||||
|
/// </summary>
|
||||||
|
public static int CopterUpperLimit = 50;
|
||||||
|
|
||||||
public static void GetVersionFromIni()
|
public static void GetVersionFromIni()
|
||||||
{
|
{
|
||||||
IniFiles iniFiles = new IniFiles();
|
IniFiles iniFiles = new IniFiles();
|
||||||
string readvalue = iniFiles.IniReadvalue("Version", "Version");
|
|
||||||
int intTemp;
|
int intTemp;
|
||||||
|
string readvalue;
|
||||||
|
|
||||||
|
readvalue = iniFiles.IniReadvalue("Version", "Version");
|
||||||
if (readvalue != "" && int.TryParse(readvalue, out intTemp))
|
if (readvalue != "" && int.TryParse(readvalue, out intTemp))
|
||||||
Version = int.Parse(readvalue);
|
Version = int.Parse(readvalue);
|
||||||
IsFullVersion = Version == 255;
|
IsFullVersion = Version == 255;
|
||||||
|
|
||||||
|
readvalue = iniFiles.IniReadvalue("Version", "CopterUpperLimit");
|
||||||
|
if (readvalue != "" && int.TryParse(readvalue, out intTemp))
|
||||||
|
CopterUpperLimit = int.Parse(readvalue);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -335,6 +335,16 @@ namespace Plane.FormationCreator.ViewModels
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 是否允许开始任务,全部解锁会在3秒内循环发送3次,该过程中不允许开始任务
|
||||||
|
/// </summary>
|
||||||
|
private bool _AllowMissionStart = true;
|
||||||
|
public bool AllowMissionStart
|
||||||
|
{
|
||||||
|
get { return _AllowMissionStart; }
|
||||||
|
set { Set(nameof(AllowMissionStart), ref _AllowMissionStart, value); }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
private ICommand _UnlockAllCommand;
|
private ICommand _UnlockAllCommand;
|
||||||
public ICommand UnlockAllCommand
|
public ICommand UnlockAllCommand
|
||||||
@ -343,12 +353,15 @@ namespace Plane.FormationCreator.ViewModels
|
|||||||
{
|
{
|
||||||
return _UnlockAllCommand ?? (_UnlockAllCommand = new RelayCommand(async () =>
|
return _UnlockAllCommand ?? (_UnlockAllCommand = new RelayCommand(async () =>
|
||||||
{
|
{
|
||||||
|
AllowMissionStart = false;
|
||||||
// await Task.WhenAll(_copterManager.AcceptingControlCopters.Select(copter => copter.UnlockAsync()));
|
// await Task.WhenAll(_copterManager.AcceptingControlCopters.Select(copter => copter.UnlockAsync()));
|
||||||
for (int i = 0; i < 3; i++)
|
for (int i = 0; i < 3; i++)
|
||||||
{
|
{
|
||||||
await _commModuleManager.UnlockAsync();
|
await _commModuleManager.UnlockAsync();
|
||||||
await Task.Delay(1000).ConfigureAwait(false);
|
await Task.Delay(1000).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
await Task.Delay(100);
|
||||||
|
AllowMissionStart = true;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
await Task.WhenAll(_copterManager.Copters.Select(async c => {
|
await Task.WhenAll(_copterManager.Copters.Select(async c => {
|
||||||
@ -963,7 +976,7 @@ namespace Plane.FormationCreator.ViewModels
|
|||||||
int utchour = DateTime.UtcNow.AddSeconds(5).Hour;
|
int utchour = DateTime.UtcNow.AddSeconds(5).Hour;
|
||||||
int utcminute = DateTime.UtcNow.AddSeconds(5).Minute;
|
int utcminute = DateTime.UtcNow.AddSeconds(5).Minute;
|
||||||
int utcsecond = DateTime.UtcNow.AddSeconds(5).Second;
|
int utcsecond = DateTime.UtcNow.AddSeconds(5).Second;
|
||||||
|
Message.Show("开始任务");
|
||||||
//循环3次 发送起飞命令 避免通信问题
|
//循环3次 发送起飞命令 避免通信问题
|
||||||
for (int i = 0; i < 5; i++)
|
for (int i = 0; i < 5; i++)
|
||||||
{
|
{
|
||||||
|
@ -16,6 +16,7 @@ using System.Threading;
|
|||||||
using Plane.Communication;
|
using Plane.Communication;
|
||||||
using Plane.Geography;
|
using Plane.Geography;
|
||||||
using Microsoft.Practices.ServiceLocation;
|
using Microsoft.Practices.ServiceLocation;
|
||||||
|
using Plane.FormationCreator.Util;
|
||||||
|
|
||||||
namespace Plane.FormationCreator.ViewModels
|
namespace Plane.FormationCreator.ViewModels
|
||||||
{
|
{
|
||||||
@ -131,10 +132,10 @@ namespace Plane.FormationCreator.ViewModels
|
|||||||
return _AddVirtualCopterCommand ?? (_AddVirtualCopterCommand = new RelayCommand<int>(async addcount =>
|
return _AddVirtualCopterCommand ?? (_AddVirtualCopterCommand = new RelayCommand<int>(async addcount =>
|
||||||
{
|
{
|
||||||
//给第三方时候限制数量用
|
//给第三方时候限制数量用
|
||||||
// if (_copterManager.Copters.Count() >= 50)
|
if (_copterManager.Copters.Count() >= VersionControl.CopterUpperLimit)
|
||||||
// {
|
{
|
||||||
// return;
|
return;
|
||||||
// }
|
}
|
||||||
|
|
||||||
var center = _mapManager.Center;
|
var center = _mapManager.Center;
|
||||||
string id;
|
string id;
|
||||||
|
@ -88,7 +88,9 @@
|
|||||||
<StackPanel Orientation="Horizontal"
|
<StackPanel Orientation="Horizontal"
|
||||||
HorizontalAlignment="Center"
|
HorizontalAlignment="Center"
|
||||||
Grid.Row="1"
|
Grid.Row="1"
|
||||||
Grid.ColumnSpan="3">
|
Grid.ColumnSpan="3"
|
||||||
|
Name="panel1">
|
||||||
|
|
||||||
<ec:ProgressButton HorizontalAlignment="Center"
|
<ec:ProgressButton HorizontalAlignment="Center"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
Margin="10"
|
Margin="10"
|
||||||
@ -128,7 +130,8 @@
|
|||||||
<StackPanel Orientation="Horizontal"
|
<StackPanel Orientation="Horizontal"
|
||||||
HorizontalAlignment="Center"
|
HorizontalAlignment="Center"
|
||||||
Grid.Row="2"
|
Grid.Row="2"
|
||||||
Grid.ColumnSpan="3">
|
Grid.ColumnSpan="3"
|
||||||
|
Name="panel2">
|
||||||
<Button Content="通信模块状态" Margin="5" Command="{Binding Path=StateInquireCommand}"/>
|
<Button Content="通信模块状态" Margin="5" Command="{Binding Path=StateInquireCommand}"/>
|
||||||
<Button Content="设置总数" Margin="5" Command="{Binding Path=SendCommand}" />
|
<Button Content="设置总数" Margin="5" Command="{Binding Path=SendCommand}" />
|
||||||
<Button Content="切换写航点" Margin="5" Command="{Binding Path=ChangeWriteMissionCommand}" />
|
<Button Content="切换写航点" Margin="5" Command="{Binding Path=ChangeWriteMissionCommand}" />
|
||||||
@ -142,14 +145,16 @@
|
|||||||
<TextBox Margin="2,5,5,5" Width="30" Text="{Binding CopterNum}"></TextBox>
|
<TextBox Margin="2,5,5,5" Width="30" Text="{Binding CopterNum}"></TextBox>
|
||||||
<Button Content=" 对频 " Margin="5,5,0,5" Command="{Binding Path=WriteIdCommand}" />
|
<Button Content=" 对频 " Margin="5,5,0,5" Command="{Binding Path=WriteIdCommand}" />
|
||||||
<Button Content="闪灯" Margin="5" Command="{Binding CommDataAsync}"/>
|
<Button Content="闪灯" Margin="5" Command="{Binding CommDataAsync}"/>
|
||||||
<Button Content="搜索飞机" Margin="5" Command="{Binding QueryAllCopterCommand}"/>
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
<StackPanel Orientation="Horizontal"
|
<StackPanel Orientation="Horizontal"
|
||||||
HorizontalAlignment="Center"
|
HorizontalAlignment="Center"
|
||||||
Grid.Row="4"
|
Grid.Row="4"
|
||||||
Grid.ColumnSpan="3">
|
Grid.ColumnSpan="3"
|
||||||
|
Name="panel3">
|
||||||
<Button Content="空中升级" Margin="5" Command="{Binding UpdateAllCopterCommand}"></Button>
|
<Button Content="空中升级" Margin="5" Command="{Binding UpdateAllCopterCommand}"></Button>
|
||||||
|
<Button Content="搜索飞机" Margin="5" Command="{Binding QueryAllCopterCommand}"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
</Grid>
|
</Grid>
|
||||||
|
@ -15,6 +15,7 @@ using System.Windows.Input;
|
|||||||
using System.Windows.Media;
|
using System.Windows.Media;
|
||||||
using System.Windows.Media.Imaging;
|
using System.Windows.Media.Imaging;
|
||||||
using System.Windows.Shapes;
|
using System.Windows.Shapes;
|
||||||
|
using Plane.FormationCreator.Util;
|
||||||
|
|
||||||
namespace Plane.FormationCreator.Views
|
namespace Plane.FormationCreator.Views
|
||||||
{
|
{
|
||||||
@ -38,6 +39,13 @@ namespace Plane.FormationCreator.Views
|
|||||||
|
|
||||||
this.DataContext = ServiceLocator.Current.GetInstance<ConnectViewModel>();
|
this.DataContext = ServiceLocator.Current.GetInstance<ConnectViewModel>();
|
||||||
|
|
||||||
|
if (!VersionControl.IsFullVersion)
|
||||||
|
{
|
||||||
|
panel1.Visibility = Visibility.Collapsed;
|
||||||
|
panel2.Visibility = Visibility.Collapsed;
|
||||||
|
panel3.Visibility = Visibility.Collapsed;
|
||||||
|
}
|
||||||
|
|
||||||
txtIPs.Focus();
|
txtIPs.Focus();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -102,9 +102,11 @@
|
|||||||
<Button Content="写入航点"
|
<Button Content="写入航点"
|
||||||
Command="{Binding WriteMissionCommand}" />
|
Command="{Binding WriteMissionCommand}" />
|
||||||
<Button Content="全部解锁"
|
<Button Content="全部解锁"
|
||||||
Command="{Binding UnlockAllCommand}" />
|
Command="{Binding UnlockAllCommand}"
|
||||||
|
IsEnabled="{Binding AllowMissionStart, UpdateSourceTrigger=PropertyChanged}" />
|
||||||
<Button Content="开始任务"
|
<Button Content="开始任务"
|
||||||
Command="{Binding MissionStartCommand}" />
|
Command="{Binding MissionStartCommand}"
|
||||||
|
IsEnabled="{Binding AllowMissionStart, UpdateSourceTrigger=PropertyChanged}"/>
|
||||||
<Button Content="暂停任务"
|
<Button Content="暂停任务"
|
||||||
Command="{Binding MissionPauseCommand}" />
|
Command="{Binding MissionPauseCommand}" />
|
||||||
<Button Content="继续任务"
|
<Button Content="继续任务"
|
||||||
|
@ -287,7 +287,7 @@
|
|||||||
<TabItem Header="灯光设计">
|
<TabItem Header="灯光设计">
|
||||||
<StackPanel>
|
<StackPanel>
|
||||||
|
|
||||||
<StackPanel >
|
<StackPanel x:Name="lightDesign">
|
||||||
<StackPanel Orientation="Horizontal" Margin="0,5,0,5" >
|
<StackPanel Orientation="Horizontal" Margin="0,5,0,5" >
|
||||||
<TextBlock Margin="5,7,0,0" Text="起始时间"/>
|
<TextBlock Margin="5,7,0,0" Text="起始时间"/>
|
||||||
<TextBox Margin="5,5,0,3" Width="30" Text="{Binding BeginTime}"/>
|
<TextBox Margin="5,5,0,3" Width="30" Text="{Binding BeginTime}"/>
|
||||||
|
@ -16,6 +16,7 @@ using System.Windows.Media.Imaging;
|
|||||||
using System.Windows.Navigation;
|
using System.Windows.Navigation;
|
||||||
using System.Windows.Shapes;
|
using System.Windows.Shapes;
|
||||||
using Plane.Geography;
|
using Plane.Geography;
|
||||||
|
using Plane.FormationCreator.Util;
|
||||||
|
|
||||||
namespace Plane.FormationCreator.Views
|
namespace Plane.FormationCreator.Views
|
||||||
{
|
{
|
||||||
@ -30,6 +31,10 @@ namespace Plane.FormationCreator.Views
|
|||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
|
||||||
this.DataContext = _modifyTaskViewModel;
|
this.DataContext = _modifyTaskViewModel;
|
||||||
|
if (!VersionControl.IsFullVersion)
|
||||||
|
{
|
||||||
|
lightDesign.Visibility = Visibility.Collapsed;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Button_Click(object sender, RoutedEventArgs e)
|
private void Button_Click(object sender, RoutedEventArgs e)
|
||||||
|
Loading…
Reference in New Issue
Block a user