예제 #1
0
파일: ListViewEx.cs 프로젝트: radtek/BootFX
 /// <summary>
 /// Sets all items in the list to be unchecked.
 /// </summary>
 public void CheckNone()
 {
     ListViewHelper.CheckAll(this, false);
 }
예제 #2
0
파일: ListViewEx.cs 프로젝트: radtek/BootFX
 /// <summary>
 /// Sets all items in the list to be checked.
 /// </summary>
 public void CheckAll()
 {
     ListViewHelper.CheckAll(this, true);
 }