https://bugzilla.novell.com/show_bug.cgi?id=349682


           Summary: NotifyIcon does not display when not initialized in
                    proper order
           Product: Mono: Class Libraries
           Version: 1.2.4
          Platform: i386
        OS/Version: Ubuntu
            Status: NEW
          Severity: Minor
          Priority: P5 - None
         Component: Windows.Forms
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]
         QAContact: [EMAIL PROTECTED]
          Found By: ---


Description of Problem:

If the NotifyIcon.Visible property is set to true before the Icon is defined
nothing shows in the notify area. Obviously the real problem here is that the
behavior is not the same as MS

Steps to reproduce the problem:
1. Use the code snippet (A) below to reproduce this problem

Actual Results:
No icon is visible in the notification area.

Expected Results:
Work similar to MS, which is not order dependent.

How often does this happen? 
Always

Additional Information:

A) This does NOT work:
 notifyIcon = new NotifyIcon();
 notifyIcon.Visible = true;
 notifyIcon.Icon = someIcon;

B) This does work:
 notifyIcon = new NotifyIcon();

 notifyIcon.Icon = someIcon;

 notifyIcon.Visible = true;


-- 
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

Reply via email to