[Mono-bugs] [Bug 80886][Wis] New - Cursor not visible in SaveFileDialog

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Sat Feb 17 20:32:08 EST 2007


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 kobruleht2 at hot.ee.

http://bugzilla.ximian.com/show_bug.cgi?id=80886

--- shadow/80886	2007-02-17 20:32:08.000000000 -0500
+++ shadow/80886.tmp.22654	2007-02-17 20:32:08.000000000 -0500
@@ -0,0 +1,53 @@
+Bug#: 80886
+Product: Mono: Class Libraries
+Version: 1.0
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: Windows.Forms
+AssignedTo: toshok at ximian.com                            
+ReportedBy: kobruleht2 at hot.ee               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Cursor not visible in SaveFileDialog
+
+To reproduce, run code
+
+Observed: no cursor
+
+Expected: cursor must be visible.
+
+
+Code:
+ 
+using System.Windows.Forms;
+using System;
+
+static class Program {
+	[STAThread]
+	static void Main() {
+		SaveFileDialog sfd = new SaveFileDialog();
+		sfd.Filter =
+			"PDF|*.pdf|" +
+			"XML|*.xml";
+		sfd.FilterIndex = 1;
+
+		sfd.FileName = "*.pdf";
+
+		if (sfd.ShowDialog() != DialogResult.OK)
+			return;
+		MessageBox.Show(sfd.FileName.Substring(
+				sfd.FileName.Length - 10));
+	}
+}
+
+Environment:
+
+MONO 1.2.3 preview
+Windows XP
+Visual C# Express 2005


More information about the mono-bugs mailing list