dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] pnetlib/System.Windows.Forms GridLayout.cs, 1.1, 1


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] pnetlib/System.Windows.Forms GridLayout.cs, 1.1, 1.2 HBoxLayout.cs, 1.3, 1.4 MessageBox.cs, 1.7, 1.8 VBoxLayout.cs, 1.2, 1.3
Date: Sun, 30 Nov 2003 00:44:08 +0000

Update of /cvsroot/dotgnu-pnet/pnetlib/System.Windows.Forms
In directory subversions:/tmp/cvs-serv10131/System.Windows.Forms

Modified Files:
        GridLayout.cs HBoxLayout.cs MessageBox.cs VBoxLayout.cs 
Log Message:


Disable "TabStop" on layout and message box controls that should
not be tab stops.


Index: GridLayout.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Windows.Forms/GridLayout.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** GridLayout.cs       14 Nov 2003 07:30:18 -0000      1.1
--- GridLayout.cs       30 Nov 2003 00:44:06 -0000      1.2
***************
*** 51,54 ****
--- 51,55 ----
                                this.rowSpacing = 4;
                                this.children = new Control [columns * rows];
+                               this.TabStop = false;
                        }
  

Index: MessageBox.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Windows.Forms/MessageBox.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** MessageBox.cs       14 Nov 2003 05:54:15 -0000      1.7
--- MessageBox.cs       30 Nov 2003 00:44:06 -0000      1.8
***************
*** 262,265 ****
--- 262,266 ----
                                        iconControl = new Control();
                                        iconControl.ClientSize = this.icon.Size;
+                                       iconControl.TabStop = false;
                                        hbox.Controls.Add(iconControl);
                                }
***************
*** 268,271 ****
--- 269,273 ----
                                textLabel = new Label();
                                textLabel.TextAlign = 
ContentAlignment.MiddleLeft;
+                               textLabel.TabStop = false;
                                if(text != null)
                                {

Index: HBoxLayout.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Windows.Forms/HBoxLayout.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** HBoxLayout.cs       14 Nov 2003 07:30:18 -0000      1.3
--- HBoxLayout.cs       30 Nov 2003 00:44:06 -0000      1.4
***************
*** 42,45 ****
--- 42,46 ----
                                margin = 4;
                                spacing = 4;
+                               TabStop = false;
                        }
  

Index: VBoxLayout.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Windows.Forms/VBoxLayout.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** VBoxLayout.cs       14 Nov 2003 07:30:18 -0000      1.2
--- VBoxLayout.cs       30 Nov 2003 00:44:06 -0000      1.3
***************
*** 42,45 ****
--- 42,46 ----
                                margin = 4;
                                spacing = 4;
+                               TabStop = false;
                        }
  





reply via email to

[Prev in Thread] Current Thread [Next in Thread]