|
|
|
date: Wed, 13 Aug 2008 04:48:09 -0700 (PDT),
group: microsoft.public.dotnet.framework
back
Re: StackPanel for .Net 2.0
On Aug 13, 3:48 pm, Rotlaus wrote:
> Hi,
>
> is there something like a StackPanel from WPF for the normal Windows
> Forms Library?
> I have to update a .Net 2.0 Application with a better User Interface,
> but .Net3.5 is not possible,
> because the application has to run on Windows 2000.
FlowLayoutPanel is probably the closest (just don't forget to set
AutoSize to true, and AutoSizeMode to GrowAndShrink), though single-
column/row TableLayoutPanel can also be used. All in all, though,
WinForms layouts are a pain to work with (particularly from within the
visual editor).
date: Wed, 13 Aug 2008 05:03:05 -0700 (PDT)
author: Pavel Minaev
Re: StackPanel for .Net 2.0
On 13 Aug., 14:03, Pavel Minaev wrote:
> On Aug 13, 3:48 pm, Rotlaus wrote:
> > is there something like a StackPanel from WPF for the normal Windows
> > Forms Library?
> > I have to update a .Net 2.0 Application with a better User Interface,
> > but .Net3.5 is not possible,
> > because the application has to run on Windows 2000.
>
> FlowLayoutPanel is probably the closest (just don't forget to set
> AutoSize to true, and AutoSizeMode to GrowAndShrink), though single-
> column/row TableLayoutPanel can also be used. All in all, though,
> WinForms layouts are a pain to work with (particularly from within the
> visual editor).
I would love to use Xaml and WPF, but as there is this requirement
for
Win2000 i have no choice.
date: Wed, 13 Aug 2008 05:15:25 -0700 (PDT)
author: Rotlaus
|
|