fadden / MonoBugs

Mono bug demonstration apps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mono Bug Samples

While trying to get a WinForms application to work under Mono on Linux, I ran into some crashes and strange behavior. These projects are small test cases created to demonstrate the problems. Because I'm specifically interested in having code developed in Windows run on Linux, the projects are built in a Visual Studio solution (VS 2017 Community Edition).

DisappearingMenus

(Noticed in: Mono 5.18.0.240, on Ubuntu 18.04.2 LTS)

Using an owner-drawn ListView can cause menu items and dialogs to be rendered as a semi-transparent rectangle. Looks like this (after clicking on the Edit menu):

screen cap

Procedure: launch DisappearingMenus. Confirm the File/Edit menu items render. Click "Show/Hide" to show the ListView. Try to select something from a menu. Note the semi-transparent rects.

Additional remarks:

  • The menus are functional, just not drawn.
  • If you toggle OwnerDraw off, the menus reappear. Note the OwnerDraw status label doesn't always update under Mono.
  • If you launch the app and click Show/Hide three times (show, hide, show), the menu rendering starts working again. If you then toggle OwnerDraw off and back on, it stops working again.

Bug report: mono/mono#13619

ListViewCrash1

(Noticed in: Mono 5.18.0.240, on Ubuntu 18.04.2 LTS)

Define a virtual ListView with two columns and no elements. Set the width of the first column to -2 (auto-size). Mono crashes while trying to determine the column width (stack trace).

Procedure: launch ListViewCrash1. Click "Crash". App crashes.

Additional remarks:

  • If the ListView is non-virtual, or the column widths are positive integers, the app doesn't crash.

Bug report: mono/mono#11070

ListViewCrash2

(Noticed in: Mono 5.18.0.240, on Ubuntu 18.04.2 LTS)

Define a virtual ListView with no elements. Clear the list. Mono crashes trying to clear an empty list (stack trace).

Procedure: launch ListViewCrash2. Crashes on launch.

Bug report: mono/mono#11070

About

Mono bug demonstration apps

License:Apache License 2.0


Languages

Language:C# 100.0%