TrendViewer, 차트 LegendText 변경한 셀이름으로 표시

This commit is contained in:
shark219-hub
2024-11-27 11:55:33 +09:00
parent cb6a25f0a2
commit 3781977741
9 changed files with 161 additions and 142 deletions

View File

@@ -38,11 +38,16 @@ namespace vmsnet
this.Controls.Add(StatusStrip1);
this.Controls.Add(ToolStrip1);
/* 작성자: 이재웅, 작성일: 2024-10-11, 작성내용: PC에 인가된 통신포트들만 표시 */
string[] ports = GetAvailablePorts();
/* 작성자: 이재웅, 작성일: 2024-10-11, 작성내용: PC에 인가된 통신포트들만 표시 */
cmb_plcport.Items.Clear();
cmb_plcport.Items.AddRange(ports);
/* 작성자: 이재웅, 작성일: 2024-11-27, 작성내용: KA 인디게이터용 PC에서 인가된 통신포트 표시 */
cmbIndiport.Items.Clear();
cmbIndiport.Items.AddRange(ports);
/* 작성자: 이재웅, 작성일: 2024-09-24, 작성내용: 유닛의 채널설정 ToolTip 초기화 */
for (int i = 0; i < tTip.GetLength(0); i++)
for (int j = 0; j < tTip.GetLength(1); j++)
@@ -1017,7 +1022,7 @@ namespace vmsnet
}
private void toolStripButton15_Click_1(object sender, EventArgs e)
{
{ // 셀이름변경
this.bs_channel.EndEdit();
using (var f = new Dialog.fCellNameChange())
if (f.ShowDialog() == DialogResult.OK)
@@ -1053,7 +1058,7 @@ namespace vmsnet
dr.EndEdit();
chno += 1;
}
UTIL.MsgE("이름이 변경되었습니다");
UTIL.MsgI("이름이 변경되었습니다");
}
}
}