Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
DataEditorX
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
聖園ミカ
DataEditorX
Commits
1fd5720d
Commit
1fd5720d
authored
Mar 24, 2019
by
IMJoyJ
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.NET Framework 2.0->4.7.2;
Fix warning
parent
11310f24
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
28 deletions
+33
-28
DataEditorX/DataEditForm.cs
DataEditorX/DataEditForm.cs
+1
-1
DataEditorX/DataEditorX.csproj
DataEditorX/DataEditorX.csproj
+10
-5
DataEditorX/app.config
DataEditorX/app.config
+22
-22
No files found.
DataEditorX/DataEditForm.cs
View file @
1fd5720d
...
@@ -448,7 +448,7 @@ void SetSelect(ComboBox cb, long k)
...
@@ -448,7 +448,7 @@ void SetSelect(ComboBox cb, long k)
int
index
=
keys
.
IndexOf
(
k
);
int
index
=
keys
.
IndexOf
(
k
);
if
(
index
>=
0
&&
index
<
cb
.
Items
.
Count
)
if
(
index
>=
0
&&
index
<
cb
.
Items
.
Count
)
cb
.
SelectedIndex
=
index
;
cb
.
SelectedIndex
=
index
;
else
else
if
(
cb
.
Items
.
Count
>
0
)
cb
.
SelectedIndex
=
0
;
cb
.
SelectedIndex
=
0
;
}
}
//得到所选值
//得到所选值
...
...
DataEditorX/DataEditorX.csproj
View file @
1fd5720d
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<Project
ToolsVersion=
"
4
.0"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
DefaultTargets=
"Build"
>
<Project
ToolsVersion=
"
12
.0"
xmlns=
"http://schemas.microsoft.com/developer/msbuild/2003"
DefaultTargets=
"Build"
>
<PropertyGroup>
<PropertyGroup>
<ProjectGuid>
{3FA42393-3D90-4DE1-93FC-33FCB3045845}
</ProjectGuid>
<ProjectGuid>
{3FA42393-3D90-4DE1-93FC-33FCB3045845}
</ProjectGuid>
<Configuration
Condition=
" '$(Configuration)' == '' "
>
Debug
</Configuration>
<Configuration
Condition=
" '$(Configuration)' == '' "
>
Debug
</Configuration>
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
<OutputType>
WinExe
</OutputType>
<OutputType>
WinExe
</OutputType>
<RootNamespace>
DataEditorX
</RootNamespace>
<RootNamespace>
DataEditorX
</RootNamespace>
<AssemblyName>
DataEditorX
</AssemblyName>
<AssemblyName>
DataEditorX
</AssemblyName>
<TargetFrameworkVersion>
v
2.0
</TargetFrameworkVersion>
<TargetFrameworkVersion>
v
4.5
</TargetFrameworkVersion>
<AppDesignerFolder>
Properties
</AppDesignerFolder>
<AppDesignerFolder>
Properties
</AppDesignerFolder>
<StartupObject>
DataEditorX.Program
</StartupObject>
<StartupObject>
DataEditorX.Program
</StartupObject>
<ApplicationIcon>
icon.ico
</ApplicationIcon>
<ApplicationIcon>
icon.ico
</ApplicationIcon>
...
@@ -17,6 +17,7 @@
...
@@ -17,6 +17,7 @@
<TreatWarningsAsErrors>
False
</TreatWarningsAsErrors>
<TreatWarningsAsErrors>
False
</TreatWarningsAsErrors>
<IntermediateOutputPath>
obj\$(Configuration)\
</IntermediateOutputPath>
<IntermediateOutputPath>
obj\$(Configuration)\
</IntermediateOutputPath>
<WarningLevel>
4
</WarningLevel>
<WarningLevel>
4
</WarningLevel>
<TargetFrameworkProfile
/>
</PropertyGroup>
</PropertyGroup>
<PropertyGroup
Condition=
" '$(Platform)' == 'AnyCPU' "
>
<PropertyGroup
Condition=
" '$(Platform)' == 'AnyCPU' "
>
<PlatformTarget>
x86
</PlatformTarget>
<PlatformTarget>
x86
</PlatformTarget>
...
@@ -42,6 +43,12 @@
...
@@ -42,6 +43,12 @@
<DefineConstants>
TRACE
</DefineConstants>
<DefineConstants>
TRACE
</DefineConstants>
<BaseIntermediateOutputPath>
obj\
</BaseIntermediateOutputPath>
<BaseIntermediateOutputPath>
obj\
</BaseIntermediateOutputPath>
</PropertyGroup>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'"
>
<Prefer32Bit>
false
</Prefer32Bit>
</PropertyGroup>
<PropertyGroup
Condition=
"'$(Configuration)|$(Platform)' == 'Release|AnyCPU'"
>
<Prefer32Bit>
false
</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<ItemGroup>
<Reference
Include=
"FastColoredTextBox"
>
<Reference
Include=
"FastColoredTextBox"
>
<HintPath>
DLL\FastColoredTextBox.dll
</HintPath>
<HintPath>
DLL\FastColoredTextBox.dll
</HintPath>
...
@@ -232,8 +239,6 @@
...
@@ -232,8 +239,6 @@
<CopyToOutputDirectory>
PreserveNewest
</CopyToOutputDirectory>
<CopyToOutputDirectory>
PreserveNewest
</CopyToOutputDirectory>
</Content>
</Content>
</ItemGroup>
</ItemGroup>
<ItemGroup>
<ItemGroup
/>
<Folder
Include=
"Core\TCGEditor"
/>
</ItemGroup>
<Import
Project=
"$(MSBuildToolsPath)\Microsoft.CSharp.targets"
/>
<Import
Project=
"$(MSBuildToolsPath)\Microsoft.CSharp.targets"
/>
</Project>
</Project>
\ No newline at end of file
DataEditorX/app.config
View file @
1fd5720d
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<
configuration
>
<
configuration
>
<
connectionStrings
>
<
connectionStrings
>
<!--
Example
connection
to
a
SQL
Server
Database
on
localhost
. -->
<!--
Example
connection
to
a
SQL
Server
Database
on
localhost
. -->
...
@@ -11,40 +11,40 @@
...
@@ -11,40 +11,40 @@
System
.
Configuration
.
ConfigurationManager
.
AppSettings
[
key
]
System
.
Configuration
.
ConfigurationManager
.
AppSettings
[
key
]
-->
-->
<!--
MSE
language
data
/
mse_xxx
.
txt
-->
<!--
MSE
language
data
/
mse_xxx
.
txt
-->
<
add
key
=
"mse"
value
=
"Chinese-Simplified"
/>
<
add
key
=
"mse"
value
=
"Chinese-Simplified"
/>
<!--
Language
data
/
cardinfo_xxxx
.
txt
data
/
language_xxx
.
txt
-->
<!--
Language
data
/
cardinfo_xxxx
.
txt
data
/
language_xxx
.
txt
-->
<
add
key
=
"language"
value
=
"english"
/>
<
add
key
=
"language"
value
=
"english"
/>
<!--
Check
system
language
when
running
program
first
time
-->
<!--
Check
system
language
when
running
program
first
time
-->
<
add
key
=
"check_system_language"
value
=
"true"
/>
<
add
key
=
"check_system_language"
value
=
"true"
/>
<!--
async
load
data
-->
<!--
async
load
data
-->
<
add
key
=
"async"
value
=
"false"
/>
<
add
key
=
"async"
value
=
"false"
/>
<!--
DataEditorX
source
code
-->
<!--
DataEditorX
source
code
-->
<
add
key
=
"sourceURL"
value
=
"https://github.com/purerosefallen/DataEditorX"
/>
<
add
key
=
"sourceURL"
value
=
"https://github.com/purerosefallen/DataEditorX"
/>
<!--
DataEditorX
update
url
-->
<!--
DataEditorX
update
url
-->
<
add
key
=
"updateURL"
value
=
"https://github.com/purerosefallen/DataEditorX/tree/master/win32/readme.txt"
/>
<
add
key
=
"updateURL"
value
=
"https://github.com/purerosefallen/DataEditorX/tree/master/win32/readme.txt"
/>
<!--
delete
,
modify
with
card
'
s
files
image
script
-->
<!--
delete
,
modify
with
card
'
s
files
image
script
-->
<
add
key
=
"opera_with_cards_file"
value
=
"true"
/>
<
add
key
=
"opera_with_cards_file"
value
=
"true"
/>
<!--
open
file
in
this
.
such
as
lua
-->
<!--
open
file
in
this
.
such
as
lua
-->
<
add
key
=
"open_file_in_this"
value
=
"true"
/>
<
add
key
=
"open_file_in_this"
value
=
"true"
/>
<!--
check
update
when
opening
application
automatically
-->
<!--
check
update
when
opening
application
automatically
-->
<
add
key
=
"auto_check_update"
value
=
"true"
/>
<
add
key
=
"auto_check_update"
value
=
"true"
/>
<!--
add
require
automatically
-->
<!--
add
require
automatically
-->
<
add
key
=
"add require"
value
=
""
/>
<
add
key
=
"add require"
value
=
""
/>
<!--
Cut
Images
Setting
-->
<!--
Cut
Images
Setting
-->
<
add
key
=
"image_quilty"
value
=
"100"
/>
<
add
key
=
"image_quilty"
value
=
"100"
/>
<
add
key
=
"image"
value
=
"44,64,177,254"
/>
<
add
key
=
"image"
value
=
"44,64,177,254"
/>
<
add
key
=
"image_other"
value
=
"25,54,128,128"
/>
<
add
key
=
"image_other"
value
=
"25,54,128,128"
/>
<
add
key
=
"image_xyz"
value
=
"24,51,128,128"
/>
<
add
key
=
"image_xyz"
value
=
"24,51,128,128"
/>
<
add
key
=
"image_pendulum"
value
=
"16,50,147,109"
/>
<
add
key
=
"image_pendulum"
value
=
"16,50,147,109"
/>
<!--
CodeEdiotr
Setting
<!--
CodeEdiotr
Setting
IME
=
true
使用輸入法,正常顯示文字,反應變慢
IME
=
true
使用輸入法,正常顯示文字,反應變慢
IME
=
false
English
IME
=
false
English
-->
-->
<
add
key
=
"IME"
value
=
"false"
/>
<
add
key
=
"IME"
value
=
"false"
/>
<
add
key
=
"wordwrap"
value
=
"true"
/>
<
add
key
=
"wordwrap"
value
=
"true"
/>
<
add
key
=
"tabisspace"
value
=
"false"
/>
<
add
key
=
"tabisspace"
value
=
"false"
/>
<
add
key
=
"fontname"
value
=
"Consolas"
/>
<
add
key
=
"fontname"
value
=
"Consolas"
/>
<
add
key
=
"fontsize"
value
=
"14.5"
/>
<
add
key
=
"fontsize"
value
=
"14.5"
/>
<!--
MSE
path
-->
<!--
MSE
path
-->
<
add
key
=
"mse_path"
value
=
"./MagicSetEditor2/mse.exe"
/>
<
add
key
=
"mse_path"
value
=
"./MagicSetEditor2/mse.exe"
/>
<
add
key
=
"mse_exprotpath"
value
=
"./exprot"
/>
<
add
key
=
"mse_exprotpath"
value
=
"./exprot"
/>
...
@@ -53,4 +53,4 @@
...
@@ -53,4 +53,4 @@
<!--
1024
:
40
-->
<!--
1024
:
40
-->
<
add
key
=
"autolength"
value
=
"37"
/>
<
add
key
=
"autolength"
value
=
"37"
/>
</
appSettings
>
</
appSettings
>
</
configuration
>
<
startup
><
supportedRuntime
version
=
"v4.0"
sku
=
".NETFramework,Version=v4.5"
/></
startup
></
configuration
>
\ No newline at end of file
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