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
Dark_Zane
DataEditorX
Commits
19748d8b
Commit
19748d8b
authored
Jun 12, 2020
by
JoyJ
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use nuget FCTB
parent
ca2470a7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
3 deletions
+8
-3
DataEditorX/Controls/FastColoredTextBoxEx.cs
DataEditorX/Controls/FastColoredTextBoxEx.cs
+1
-1
DataEditorX/Controls/MySyntaxHighlighter.cs
DataEditorX/Controls/MySyntaxHighlighter.cs
+4
-0
DataEditorX/DataEditorX.csproj
DataEditorX/DataEditorX.csproj
+2
-2
DataEditorX/packages.config
DataEditorX/packages.config
+1
-0
No files found.
DataEditorX/Controls/FastColoredTextBoxEx.cs
View file @
19748d8b
...
...
@@ -17,7 +17,7 @@ public class FastColoredTextBoxEx : FastColoredTextBox
Point
lastMouseCoord
;
public
FastColoredTextBoxEx
()
:
base
()
{
this
.
SyntaxHighlighter
=
new
MySyntaxHighlighter
();
this
.
SyntaxHighlighter
=
new
MySyntaxHighlighter
(
this
);
this
.
TextChanged
+=
this
.
FctbTextChanged
;
this
.
ToolTipDelay
=
1
;
this
.
DelayedEventsInterval
=
1
;
...
...
DataEditorX/Controls/MySyntaxHighlighter.cs
View file @
19748d8b
...
...
@@ -23,6 +23,10 @@ public class MySyntaxHighlighter : SyntaxHighlighter
readonly
TextStyle
mFunStyle
=
new
TextStyle
(
Brushes
.
LightGray
,
null
,
FontStyle
.
Bold
);
readonly
TextStyle
mErrorStyle
=
new
TextStyle
(
Brushes
.
Red
,
null
,
FontStyle
.
Bold
);
public
MySyntaxHighlighter
(
FastColoredTextBox
currentTb
)
:
base
(
currentTb
)
{
}
/// <summary>
/// Highlights Lua code
/// </summary>
...
...
DataEditorX/DataEditorX.csproj
View file @
19748d8b
...
...
@@ -59,8 +59,8 @@
<Reference
Include=
"EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
>
<HintPath>
..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll
</HintPath>
</Reference>
<Reference
Include=
"FastColoredTextBox"
>
<HintPath>
DLL
\FastColoredTextBox.dll
</HintPath>
<Reference
Include=
"FastColoredTextBox
, Version=2.16.24.0, Culture=neutral, PublicKeyToken=fb8aa12b994ef61b, processorArchitecture=MSIL
"
>
<HintPath>
..\packages\FCTB.2.16.24\lib
\FastColoredTextBox.dll
</HintPath>
</Reference>
<Reference
Include=
"Microsoft.VisualBasic"
/>
<Reference
Include=
"Newtonsoft.Json"
>
...
...
DataEditorX/packages.config
View file @
19748d8b
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<
packages
>
<
package
id
=
"EntityFramework"
version
=
"6.4.4"
targetFramework
=
"net46"
/>
<
package
id
=
"FCTB"
version
=
"2.16.24"
targetFramework
=
"net46"
/>
<
package
id
=
"System.Data.SQLite"
version
=
"1.0.113.1"
targetFramework
=
"net46"
/>
<
package
id
=
"System.Data.SQLite.Core"
version
=
"1.0.113.1"
targetFramework
=
"net46"
/>
<
package
id
=
"System.Data.SQLite.EF6"
version
=
"1.0.113.0"
targetFramework
=
"net46"
/>
...
...
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