=====* UniMarc [0.0124] 버전 업데이트 내용 *=====

1. 목록등록
ㄴ> 등록이나 삭제할 경우 오류메시지 표출되는 버그 수정.

2. 마크 정리
ㄴ> 드래그 앤 드랍으로 행이동 하는 함수 추가 (현재 활용면에서 의견 논의 필요하므로 사용은 중단)
  ㄴ> 활성화 방법 - dataGridView1의 AllowDrop을 True로 변경.

3. 마크 작성
ㄴ> Ctrl+H 오류나는 버그 수정.
ㄴ> 최신 마크 표출되지 않는 버그 수정.
This commit is contained in:
SeungHo Yang
2022-02-11 10:57:20 +09:00
parent b8c5092f75
commit 3e2b676aa2
17 changed files with 73 additions and 61 deletions

View File

@@ -317,5 +317,30 @@ namespace WindowsFormsApp1.Mac
System.IO.File.WriteAllText(FileName, Marc_data, Encoding.Default);
}
}
#region Grid ( ) ( dataGridView1의 AllowDrop )
Skill_Grid sg = new Skill_Grid();
private void dataGridView1_MouseDown(object sender, MouseEventArgs e)
{
sg.MouseDown(sender, e);
}
private void dataGridView1_MouseMove(object sender, MouseEventArgs e)
{
sg.MouseMove(sender, e);
}
private void dataGridView1_DragDrop(object sender, DragEventArgs e)
{
sg.DragDrop(sender, e);
}
private void dataGridView1_DragOver(object sender, DragEventArgs e)
{
sg.DragOver(sender, e);
}
#endregion
}
}