Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=82481 --- shadow/82481 2007-08-20 11:18:59.000000000 -0400 +++ shadow/82481.tmp.28938 2007-08-20 11:21:54.000000000 -0400 @@ -33,6 +33,43 @@ GC: Included Boehm (with typed GC) SIGSEGV: altstack Notifications: epoll Architecture: x86 Disabled: none [EMAIL PROTECTED] tmp]$ + +------- Additional Comments From [EMAIL PROTECTED] 2007-08-20 11:21 ------- +In case I lose it, here's my test case for this: + +using System; +using System.Drawing; +using System.Windows.Forms; + +public class MainForm : Form +{ + [STAThread] + static void Main () + { + Application.Run (new MainForm ()); + } + + StatusStrip ss; + + public MainForm () + { + ss = new StatusStrip (); + ss.Items.Add (new ToolStripProgressBar ()); + ss.Items.Add (new ToolStripStatusLabel ("Start")); + Controls.Add (ss); + + Button b = new Button (); + b.Top = 50; + b.Click += new EventHandler (b_Click); + Controls.Add (b); + } + + void b_Click (object sender, EventArgs e) + { + (ss.Items[1] as ToolStripStatusLabel).Text = "Finish"; + (ss.Items[0] as ToolStripProgressBar).Value += 1; + } +} _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
