Version 2.0.3 (January 14, 2020)
- Added: ListView property OddRowColorEnabled (True/False).
- Changed: ListView removed property "Sorting" until such time as sorting code is added to the control. In the meantime, use the SortByColumn method.
- Fixed: ListView now draws significantly faster becase only affected changed visible line items invoke a redraw of the ListView only if the BeginUpdate flag is False. Enclosing many ListView row/col changes in BeginUpdate/EndUpdate continues to be the best approach for optimal performance.
- Fixed: Visual Designer code generated for redisplaying closed forms would not correctly show previous statusbar, or toolbar, or mainmenu.
- Fixed: MainMenus with only one defined entry would fail to display in the visual designer when the Menu Editor was closed.
- Fixed: Visual Designer code generated for KeyUp, KeyDown, KeyPress events were not cancelling the key input when e.Handled = True.
- Fixed: Setting StatusBar font via code was not working. Example: frmMain.StatusBar.Font = New wfxFont("Consolas", 10, FontStyles.Bold, FontCharset.Default)
https://github.com/PaulSquires/WinFBE/releases
Thanks, Paul, Early observation wfxControl.inc: For the next release, lines 150, 152 and 158. :0)
hahaha, oh my, I forgot to take out the debug lines :)
ListView: KeyUp, KeyDown and KeyPress each fire twice. All else appears to function as designed.
Quote from: SeaVipe on January 14, 2020, 05:20:48 PM
ListView: KeyUp, KeyDown and KeyPress each fire twice. All else appears to function as designed.
This was a regression in the WinForms code that I introduced in the last update. It is now fixed. It affected all controls, not just ListView.