[vb.net] Controls 화면 업데이트를 중지시키는 방법(Controls ScreenUpdating)

하나를하더라도최선을 2019-09-18 21:36:24 37,597 0 0
        1) 안됨
            'DataGridView1.BeginUpdate()
            'DataGridView1.EndUpdate()

        2) 안됨
            'DataGridView1.SuspendDrawing()
            'DataGridView1.ResumeDrawing()

        3) 됨
            DataGridView1.SuspendLayout()
            DataGridView1.ResumeLayout()


댓글 0개

첫 번째 댓글을 작성해보세요!