示例#1
0
            public PEListViewItem(PEListView ownerView, PEListView.PEListViewItem parentItem, string text, Track track, GuitarDifficulty difficulty)
                : base(text)
            {
                this.StateImageIndex = 0;

                this.ownerView  = ownerView;
                this.parentItem = parentItem;
                this.track      = track;
                this.difficulty = difficulty;
            }
示例#2
0
 public PEListView.PEListViewItem Add(PEListView.PEListViewItem value)
 {
     return(base.Add(value) as PEListView.PEListViewItem);
 }