You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added CellRendererGetter to allow each cell to have a different renderer.
- Obsolete properties are no longer code-gen'ed.
- Fixed a few small bugs
git-svn-id: https://svn.code.sf.net/p/objectlistview/code/cs/trunk@804 0bec5ed8-b53f-49e6-9885-ce7bc93af311
// public virtual Color UnfocusedHighlightBackgroundColor { get { return this.UnfocusedSelectedBackColor; } set { this.UnfocusedSelectedBackColor = value; } }
// public virtual Color UnfocusedHighlightForegroundColor { get { return this.UnfocusedSelectedForeColor; } set { this.UnfocusedSelectedForeColor = value; } }
/// This delegate is called when the list wants to show a tooltip for a particular cell.
3727
3768
/// The delegate should return the text to display, or null to use the default behavior
@@ -4229,7 +4270,7 @@ public virtual void BuildList(bool shouldPreserveState) {
4229
4270
this.TopItemIndex=previousTopIndex;
4230
4271
}
4231
4272
4232
-
System.Diagnostics.Debug.WriteLine(String.Format("PERF - Building list for {2} objects took {0}ms / {1} ticks",sw.ElapsedMilliseconds,sw.ElapsedTicks,this.GetItemCount()));
4273
+
// System.Diagnostics.Debug.WriteLine(String.Format("PERF - Building list for {2} objects took {0}ms / {1} ticks", sw.ElapsedMilliseconds, sw.ElapsedTicks, this.GetItemCount()));
4233
4274
}
4234
4275
4235
4276
/// <summary>
@@ -4909,7 +4950,9 @@ protected virtual void CalculateOwnerDrawnHitTest(OlvListViewHitTestInfo hti, in
4909
4950
return;
4910
4951
4911
4952
// Which renderer was responsible for drawing that point
<summary>ObjectListView is a .NET ListView wired on caffeine, guarana and steroids.</summary>
14
-
<description>ObjectListView is a .NET ListView wired on caffeine, guarana and steroids. More calmly, it is a C# wrapper around a .NET ListView, which makes the ListView much easier to use and teaches it lots of neat new tricks.</description>
15
-
<releaseNotes>V2.9 adds buttons to cells, fixed some formatting bugs, and completely rewrote the demo to be much easier to understand.</releaseNotes>
<description>ObjectListView is a .NET ListView wired on caffeine, guarana and steroids.
15
+
More calmly, it is a C# wrapper around a .NET ListView, which makes the ListView much easier to use and teaches it lots of neat new tricks.</description>
16
+
<releaseNotes>v2.9.1 Added CellRendererGetter to allow each cell to have a different renderer, plus Fixes a few small bugs.
17
+
v2.9 adds buttons to cells, fixed some formatting bugs, and completely rewrote the demo to be much easier to understand.</releaseNotes>
0 commit comments