https://bugzilla.novell.com/show_bug.cgi?id=487896
Summary: Application.Idle works differently depending on
OS/framework
Classification: Mono
Product: Mono: Class Libraries
Version: 2.2.x
Platform: Other
OS/Version: All
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Windows.Forms
AssignedTo: [email protected]
ReportedBy: [email protected]
QAContact: [email protected]
Found By: ---
Description of Problem:
Application.Idle event is fired different depending on OS + framework
combination:
Vista + .net = fires once
Vista + mono = does not fire at all
OpenSuse 11.0 + mono = fires continuously
Steps to reproduce the problem:
using System;
using System.Windows.Forms;
namespace AppIdleTest
{
public class MainForm : Form
{
static void Main()
{
Application.Run(new MainForm());
}
public MainForm()
{
Application.Idle += delegate {
System.Console.WriteLine("idle");
};
}
}
}
Actual Results:
Vista + .net = fires once
Vista + mono = does not fire at all
OpenSuse 11.0 + mono = fires continuously
How often does this happen?
Always
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.
_______________________________________________
mono-bugs maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs