forked from 247321453/DataEditorX
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
126 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
* 由SharpDevelop创建。 | ||
* 用户: Administrator | ||
* 日期: 2017/5/11 | ||
* 时间: 16:14 | ||
* | ||
* 要改变这种模板请点击 工具|选项|代码编写|编辑标准头文件 | ||
*/ | ||
using System; | ||
|
||
namespace DataEditorX.Core.Info | ||
{ | ||
public static class CardLink | ||
{ | ||
/* | ||
0x1 ↙ | ||
0x2 ↓ | ||
0x4 ↘ | ||
0x8 ← | ||
0x20 → | ||
0x40 ↖ | ||
0x80 ↑ | ||
0x100 ↗*/ | ||
public const int DownLeft=0x1; | ||
public const int Down = 0x2; | ||
public const int DownRight = 0x4; | ||
public const int Left = 0x8; | ||
public const int Right = 0x20; | ||
public const int UpLeft = 0x40; | ||
public const int Up = 0x80; | ||
public const int UpRight = 0x100; | ||
|
||
public static bool isLink(int marks, int mark){ | ||
return (marks & mark) == mark; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
★更新历史 | ||
2.4.3.0 | ||
导出link的MSE存档 | ||
2.4.2.5 | ||
link的箭头控件 | ||
2.4.2.4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
★更新历史 | ||
2.4.3.0 | ||
导出link的MSE存档 | ||
2.4.2.5 | ||
link的箭头控件 | ||
2.4.2.4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.