Commit f9b7edec by liulongfei

调整枚举定义位置,界面调整

parent 12dd5af3
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VIZ.GimbalAI.Domain
{
/// <summary>
/// 摇杆方向
/// </summary>
public enum RockerDirection
{
/// <summary>
/// 正向
/// </summary>
[Description("正向")]
Forward = 1,
/// <summary>
/// 反向
/// </summary>
[Description("反向")]
Backward = 2
}
}
...@@ -83,6 +83,7 @@ ...@@ -83,6 +83,7 @@
<Reference Include="System.Xml" /> <Reference Include="System.Xml" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<Compile Include="Enum\RockerDirection.cs" />
<Compile Include="Enum\VideoViewKeys.cs" /> <Compile Include="Enum\VideoViewKeys.cs" />
<Compile Include="Enum\ServiceKeys.cs" /> <Compile Include="Enum\ServiceKeys.cs" />
<Compile Include="Message\Gimbal\GimbalInitCompleteMessage.cs" /> <Compile Include="Message\Gimbal\GimbalInitCompleteMessage.cs" />
......
...@@ -120,7 +120,7 @@ ...@@ -120,7 +120,7 @@
</Grid> </Grid>
<!-- 参数设置 --> <!-- 参数设置 -->
<Grid Grid.Row="1"> <Grid Grid.Row="1" Margin="0,10,0,0">
<Grid.RowDefinitions> <Grid.RowDefinitions>
<RowDefinition Height="3*"></RowDefinition> <RowDefinition Height="3*"></RowDefinition>
<RowDefinition Height="2*"></RowDefinition> <RowDefinition Height="2*"></RowDefinition>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment