'전체보기' 상태일 때만 그룹헤더의 [Null Balance] 팝업 정보가 표시되도록 변경

This commit is contained in:
shark219-hub
2024-12-09 16:30:30 +09:00
parent 0401f1ddd8
commit ac4448e59e
14 changed files with 1241 additions and 1157 deletions

View File

@@ -53,7 +53,7 @@ namespace vmsnet
}
public void Button2_Click(object sender, EventArgs e)
{
{ // 전체 선택
foreach (ListViewItem item in CheckedListBox1.Items)
{
item.Checked = true;
@@ -62,7 +62,7 @@ namespace vmsnet
}
public void Button3_Click(object sender, EventArgs e)
{
{ // 전체 해제
foreach (ListViewItem item in CheckedListBox1.Items)
{
item.Checked = false;
@@ -80,7 +80,7 @@ namespace vmsnet
}
public void Button1_Click(object sender, EventArgs e)
{
{ // 확인
if (CheckedListBox1.CheckedItems.Count > 10)
{
UTIL.MsgE("최대 10개까지 선택 가능 합니다");