[Mono-bugs] [Bug 487896] New: Application.Idle works differently depending on OS/framework
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Mon Mar 23 15:05:55 EDT 2009
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: mono-bugs at lists.ximian.com
ReportedBy: derek at upwithabang.com
QAContact: mono-bugs at lists.ximian.com
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.
More information about the mono-bugs
mailing list