[Mono-bugs] [Bug 440933] [mono 2.0.1] Control.Invoke isn't working correctly when move or resize form
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Mon Jan 11 20:47:40 EST 2010
http://bugzilla.novell.com/show_bug.cgi?id=440933
http://bugzilla.novell.com/show_bug.cgi?id=440933#c5
--- Comment #5 from James Purcell <jdpurcell2 at yahoo.com> 2010-01-12 01:47:38 UTC ---
Test app for WM_TIMER problem as mentioned on IRC:
using System;
using System.Windows.Forms;
static class Program {
static void Main() {
Form form = new Form();
TextBox textbox = new TextBox() { Text = "0" };
Timer timer = new Timer() { Enabled = true, Interval = 500 };
form.Controls.Add(textbox);
timer.Tick += (sender, e) => {
textbox.Text = (Int32.Parse(textbox.Text) + 1).ToString();
};
Application.Run(form);
}
}
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
More information about the mono-bugs
mailing list