[Gtk-sharp-list] Can label widgets not expand/fill ?

Fredrik Nilsson jymdman@home.se
Sun, 13 Mar 2005 13:22:44 +0100


Hi Ben,

Set the label's Xalign property to 0:

lbl1.Xalign = 0;
lbl2.Xalign = 0;

/Fredrik


On lör, 2005-03-12 at 11:56 -0600, Ben Davis wrote:
> I have a 4x2 table,  the left colum has labels and the right  column has 
> entries.  I attached each label using AttachOptions.Expand | 
> AttachOptions.Fill.   I've set each label's justification to 
> Justification.Left, however the labels do not touch the left edge as I 
> would expec them to?   Can label widgets not expand or fill in a table cell?
> 
> (see attached Main.cs)