-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finishing up on Modbus Registers editor backend logic. New commands, …
…improved logic handling.
- Loading branch information
JHirniak
committed
Nov 11, 2023
1 parent
5b72337
commit 4aeab3d
Showing
41 changed files
with
5,770 additions
and
2,062 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
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Serial_Monitor.Classes.Modbus { | ||
public class ModbusObject { | ||
string name = ""; | ||
public string Name { | ||
get { return name; } | ||
set { name = value; } | ||
} | ||
Color backColor = Color.White; | ||
public Color BackColor { | ||
get { return backColor; } | ||
set { backColor = value; } | ||
} | ||
Color foreColor = Color.Black; | ||
public Color ForeColor { | ||
get { return foreColor; } | ||
set { foreColor = value; } | ||
} | ||
bool useBackColor = false; | ||
public bool UseBackColor { | ||
get { return useBackColor; } | ||
set { useBackColor = value; } | ||
} | ||
bool useForeColor = false; | ||
public bool UseForeColor { | ||
get { return useForeColor; } | ||
set { useForeColor = value; } | ||
} | ||
} | ||
} |
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
Oops, something went wrong.