태그 자동 추가 하는 작업 중

This commit is contained in:
backuppc
2025-11-14 17:31:00 +09:00
parent 0c2f00e79e
commit 4a992ea9c1
4 changed files with 150 additions and 55 deletions

View File

@@ -29,7 +29,7 @@ namespace Project.Dialog
private void fLog_Load(object sender, EventArgs e)
{
this.label1.Text = $"XBEE:{PUB.setting.XBE_ID}";
var colorlist = new arCtl.sLogMessageColor[]
{
new arCtl.sLogMessageColor("NOR",Color.Black),
@@ -62,7 +62,7 @@ namespace Project.Dialog
}
private void Log_RaiseMsgplc(DateTime LogTime, string TypeStr, string Message)
{
showlog(rtPLC, LogTime, TypeStr, Message);
//showlog(rtPLC, LogTime, TypeStr, Message);
}
private void Log_RaiseMsgbms(DateTime LogTime, string TypeStr, string Message)
{
@@ -70,7 +70,7 @@ namespace Project.Dialog
}
private void Log_RaiseMsgcal(DateTime LogTime, string TypeStr, string Message)
{
showlog(rtCAL, LogTime, TypeStr, Message);
showlog(rtXbee, LogTime, TypeStr, Message);
}
void showlog(arCtl.LogTextBox rtRx, DateTime LogTime, string TypeStr, string Message)
{