mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-11 11:45:30 +00:00
Line up the titles.
svn path=/trunk/gtk-sharp/; revision=6149
This commit is contained in:
parent
c6f414c7d4
commit
45e4ed0684
|
@ -85,7 +85,7 @@ class Client {
|
||||||
|
|
||||||
ArrayList dataList = Conn.SelectAll ();
|
ArrayList dataList = Conn.SelectAll ();
|
||||||
|
|
||||||
tableau = new Gtk.Table ((uint) dataList.Count + 1, 3, true);
|
tableau = new Gtk.Table ((uint) dataList.Count + 1, 3, false);
|
||||||
DrawTitles (tableau);
|
DrawTitles (tableau);
|
||||||
tableau.ColSpacings = 10;
|
tableau.ColSpacings = 10;
|
||||||
uint i = 1;
|
uint i = 1;
|
||||||
|
@ -114,12 +114,12 @@ class Client {
|
||||||
label = new Label (String.Empty);
|
label = new Label (String.Empty);
|
||||||
label.Markup = "<big><b>Name</b></big>";
|
label.Markup = "<big><b>Name</b></big>";
|
||||||
label.UseMarkup = true;
|
label.UseMarkup = true;
|
||||||
t.Attach (label, 0, 2, 0, 1);
|
t.Attach (label, 1, 2, 0, 1);
|
||||||
|
|
||||||
label = new Label (String.Empty);
|
label = new Label (String.Empty);
|
||||||
label.Markup = "<big><b>Address</b></big>";
|
label.Markup = "<big><b>Address</b></big>";
|
||||||
label.UseMarkup = true;
|
label.UseMarkup = true;
|
||||||
t.Attach (label, 0, 3, 0, 1);
|
t.Attach (label, 2, 3, 0, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void Db_Insert ()
|
static void Db_Insert ()
|
||||||
|
@ -299,7 +299,7 @@ class IdConnection : IDisposable
|
||||||
public IdConnection ()
|
public IdConnection ()
|
||||||
{
|
{
|
||||||
cnc = new SqlConnection ();
|
cnc = new SqlConnection ();
|
||||||
string connectionString = "hostaddr=192.168.1.2;" +
|
string connectionString = "hostaddr=80.24.221.71;" +
|
||||||
"user=monotest;" +
|
"user=monotest;" +
|
||||||
"password=monotest;" +
|
"password=monotest;" +
|
||||||
"dbname=monotest";
|
"dbname=monotest";
|
||||||
|
|
Loading…
Reference in a new issue