BrightIdeasSoftware.ObjectListView.RefreshItem C# (CSharp) 메소드

RefreshItem() 공개 메소드

Update the ListViewItem with the data from its associated model.
This method does not resort or regroup the view. It simply updates the displayed data of the given item
public RefreshItem ( OLVListItem olvi ) : void
olvi OLVListItem
리턴 void
        public virtual void RefreshItem(OLVListItem olvi)
        {
            olvi.UseItemStyleForSubItems = true;
            olvi.SubItems.Clear();
            this.FillInValues(olvi, olvi.RowObject);
            this.PostProcessOneRow(olvi.Index, this.GetDisplayOrderOfItemIndex(olvi.Index), olvi);
        }
ObjectListView