BeginListView() 공개 정적인 메소드

public static BeginListView ( string id ) : void
id string
리턴 void
예제 #1
0
 private unsafe void DrawAssemblyListView()
 {
     ListView.BeginListView(ListViewID);
     foreach (IListNode node in _listNodes)
     {
         node.Draw();
     }
     ListView.EndListView();
 }