From 39cac22231b1a120b131c1f82c3599458a90889e Mon Sep 17 00:00:00 2001 From: "Joel W. Reed" Date: Fri, 16 Nov 2007 23:03:29 -0500 Subject: [PATCH] server.name --- class/Gtk.TeamFoundation/AddRepositoryDialog.cs | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/class/Gtk.TeamFoundation/AddRepositoryDialog.cs b/class/Gtk.TeamFoundation/AddRepositoryDialog.cs index e666c7c..0bdccd8 100644 --- a/class/Gtk.TeamFoundation/AddRepositoryDialog.cs +++ b/class/Gtk.TeamFoundation/AddRepositoryDialog.cs @@ -38,6 +38,7 @@ namespace Gtk.TeamFoundation { public class AddRepositoryDialog : DialogBase { + private Entry name; private Entry server; private Entry username; private Entry password; @@ -60,13 +61,16 @@ namespace Gtk.TeamFoundation public AddRepositoryDialog() : base("Add Repository") { - VBox.Add(new Label("Please enter the server name, your login credentials, and a workspace name.")); - VBox.Add(new Label(" ")); - Table table = new Table(3, 2, false); - server = AddLabeledEntry(table, "_Server:", 1, 2); - username = AddLabeledEntry(table, "_Username:", 2, 3); - password = AddLabeledEntry(table, "_Password:", 4, 5); + table.RowSpacing = ((uint)(6)); + table.ColumnSpacing = ((uint)(6)); + table.BorderWidth = ((uint)(12)); + + name = AddLabeledEntry(table, "_Name:", 1, 2); + server = AddLabeledEntry(table, "_Server:", 2, 3); + // table.Add(new Gtk.HSeparator()); + username = AddLabeledEntry(table, "_Username:", 4, 5); + password = AddLabeledEntry(table, "_Password:", 5, 6); VBox.Add(table); okButton = AddButton ("OK", ResponseType.Ok) as Button; -- 2.11.4.GIT