[Mono-bugs] [Bug 76166][Nor] New - No border rendered in TextBoxes.

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Tue Sep 20 13:49:37 EDT 2005


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 miguel at ximian.com.

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

--- shadow/76166	2005-09-20 13:49:37.000000000 -0400
+++ shadow/76166.tmp.27103	2005-09-20 13:49:37.000000000 -0400
@@ -0,0 +1,52 @@
+Bug#: 76166
+Product: Mono: Class Libraries
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: Windows.Forms
+AssignedTo: peter at novonyx.com                            
+ReportedBy: miguel at ximian.com               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: No border rendered in TextBoxes.
+
+See the attached screenshots.
+
+Both are created from this code:
+
+using System;
+using System.Drawing;
+using System.Windows.Forms;
+
+        class SearchBar : UserControl {
+                TextBox filterTextBox;
+
+                public SearchBar()
+                {
+                        this.filterTextBox = new TextBox();
+                        this.filterTextBox.TabIndex = 1;
+                        this.filterTextBox.Dock = DockStyle.Fill;
+                        this.Controls.Add(this.filterTextBox);
+                        ready = true;
+                }
+
+        }
+
+        class MainWindow : System.Windows.Forms.Form {
+                public MainWindow() {
+                        SearchBar b = new SearchBar ();
+                        ClientSize = new System.Drawing.Size (250, 250);
+                        b.Dock = DockStyle.Fill;
+                        this.Controls.Add(b);
+                }
+
+                public static void Main(string[] args) {
+                        Application.Run(new MainWindow());
+                }
+        }


More information about the mono-bugs mailing list