Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
Thick-Common
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
潘栩锋
Thick-Common
Commits
a6ea33f2
Commit
a6ea33f2
authored
Jan 25, 2019
by
潘栩锋
🚴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
编译FLYAD7 模拟器
parent
cdfe4ab1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
28 deletions
+23
-28
FLYAD7_Simulation_Wpf.csproj
...ADBase/FLYAD7_Simulation_Wpf/FLYAD7_Simulation_Wpf.csproj
+20
-0
MainWindow.xaml.cs
...ct.FLY.FlyADBase/FLYAD7_Simulation_Wpf/MainWindow.xaml.cs
+3
-28
No files found.
Project.FLY.FlyADBase/FLYAD7_Simulation_Wpf/FLYAD7_Simulation_Wpf.csproj
View file @
a6ea33f2
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"4.0"
DefaultTargets=
"Build"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
>
<Import
Project=
"..\packages\PropertyChanged2.Fody.2.6.0\build\PropertyChanged2.Fody.props"
Condition=
"Exists('..\packages\PropertyChanged2.Fody.2.6.0\build\PropertyChanged2.Fody.props')"
/>
<PropertyGroup>
<Configuration
Condition=
" '$(Configuration)' == '' "
>
Debug
</Configuration>
<Platform
Condition=
" '$(Platform)' == '' "
>
x86
</Platform>
...
...
@@ -16,6 +17,8 @@
<FileAlignment>
512
</FileAlignment>
<ProjectTypeGuids>
{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
</ProjectTypeGuids>
<WarningLevel>
4
</WarningLevel>
<NuGetPackageImportStamp>
</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup
Condition=
" '$(Configuration)|$(Platform)' == 'Debug|x86' "
>
<PlatformTarget>
x86
</PlatformTarget>
...
...
@@ -43,6 +46,9 @@
<ApplicationIcon>
games_control.ico
</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference
Include=
"PropertyChanged2, Version=2.6.0.0, Culture=neutral, PublicKeyToken=ee3ee20bcf148ddd, processorArchitecture=MSIL"
>
<HintPath>
..\packages\PropertyChanged2.Fody.2.6.0\lib\net40\PropertyChanged2.dll
</HintPath>
</Reference>
<Reference
Include=
"System"
/>
<Reference
Include=
"System.Data"
/>
<Reference
Include=
"System.Drawing"
/>
...
...
@@ -129,6 +135,7 @@
<LastGenOutput>
Resources.Designer.cs
</LastGenOutput>
</EmbeddedResource>
<None
Include=
"app.config"
/>
<None
Include=
"packages.config"
/>
<None
Include=
"Properties\Settings.settings"
>
<Generator>
SettingsSingleFileGenerator
</Generator>
<LastGenOutput>
Settings.Designer.cs
</LastGenOutput>
...
...
@@ -176,7 +183,20 @@
<ItemGroup>
<Resource
Include=
"games_control.ico"
/>
</ItemGroup>
<ItemGroup>
<Resource
Include=
"FodyWeavers.xml"
>
<SubType>
Designer
</SubType>
</Resource>
</ItemGroup>
<Import
Project=
"$(MSBuildToolsPath)\Microsoft.CSharp.targets"
/>
<Import
Project=
"..\packages\Fody.3.3.5\build\Fody.targets"
Condition=
"Exists('..\packages\Fody.3.3.5\build\Fody.targets')"
/>
<Target
Name=
"EnsureNuGetPackageBuildImports"
BeforeTargets=
"PrepareForBuild"
>
<PropertyGroup>
<ErrorText>
这台计算机上缺少此项目引用的 NuGet 程序包。使用“NuGet 程序包还原”可下载这些程序包。有关更多信息,请参见 http://go.microsoft.com/fwlink/?LinkID=322105。缺少的文件是 {0}。
</ErrorText>
</PropertyGroup>
<Error
Condition=
"!Exists('..\packages\Fody.3.3.5\build\Fody.targets')"
Text=
"$([System.String]::Format('$(ErrorText)', '..\packages\Fody.3.3.5\build\Fody.targets'))"
/>
<Error
Condition=
"!Exists('..\packages\PropertyChanged2.Fody.2.6.0\build\PropertyChanged2.Fody.props')"
Text=
"$([System.String]::Format('$(ErrorText)', '..\packages\PropertyChanged2.Fody.2.6.0\build\PropertyChanged2.Fody.props'))"
/>
</Target>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
...
...
Project.FLY.FlyADBase/FLYAD7_Simulation_Wpf/MainWindow.xaml.cs
View file @
a6ea33f2
...
...
@@ -23,34 +23,9 @@ namespace FLYAD7_Simulation_Wpf
public
partial
class
MainWindow
:
Window
,
INotifyPropertyChanged
{
FlyADClientUI
flyadclient_ui
;
private
double
timespan1ms
;
public
double
TimeSpan1ms
{
get
{
return
timespan1ms
;
}
set
{
if
(
timespan1ms
!=
value
)
{
timespan1ms
=
value
;
NotifyPropertyChanged
(
"TimeSpan1ms"
);
}
}
}
private
int
oneSecCnt
;
public
int
OneSecCnt
{
get
{
return
oneSecCnt
;
}
set
{
if
(
oneSecCnt
!=
value
)
{
oneSecCnt
=
value
;
NotifyPropertyChanged
(
"OneSecCnt"
);
}
}
}
public
double
TimeSpan1ms
{
get
;
set
;
}
public
int
OneSecCnt
{
get
;
set
;
}
FLYAD7
flyad7
;
FLY
.
Simulation
.
Flyad7
.
OBJProxy
.
Flyad7_OBJProxy
flyad7objproxy
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment