GUI programming and C#

  • Thread starter Thread starter Jorge Colon
  • Start date Start date
J

Jorge Colon

I'm trying to find resources on GUI programming and C#. I find that the
default WinForms aren't aesthetically pleasing. I already have all the
software to make GUIs (Photoshop and Fireworks). Just trying to figure out
the part that replaces the default WinForms look.

Thanks,
Jorge
 
I'm trying to find resources on GUI programming and C#. I find that the
default WinForms aren't aesthetically pleasing. I already have all the
software to make GUIs (Photoshop and Fireworks). Just trying to figure out
the part that replaces the default WinForms look.

Thanks,
Jorge

Hi,

Those programs can be used for web apps, for windows app they are
useless.
Take a look at some toolset like Infragistics, they support a lot of
customizations.
 
Ignacio said:
Hi,

Those programs can be used for web apps, for windows app they are
useless.

Hardly. If you were talking about Flash or DHTML that would be true, but
Photoshop makes image files, which can certainly be used in Windows Forms or
WPF.
 
You want to learn Microsoft's Windows Presentation Format and Silverlight
which is a subset of WPF. You can make your own user interface or at the
very least use or acquire WPF controls that allow you to modify their design
surfaces.
 
How do I handle checking to see if .Net 3.0 and Silverlight is installed?
Will my program work in XP without much of a hassle using WPF?

Jorge
 
Each user must download and install a control just like upgrading Flash
requires. Its imposing the first time but after that rather transparent just
like Flash; clickety-click and its done.

You can get started learning about WPF at http://asp.net/ by watching a few
videos. You will also want to learn about and use the Expression Suite as
there is no way we can manually write all the XAML you will be learning
about.

As for determining which release of the framework is installed? Look into
the System.Environment namespace.

As for checking for versions of the framework? There is a class
System.Environment
 
Hardly.  If you were talking about Flash or DHTML that would be true, but
Photoshop makes image files, which can certainly be used in Windows Forms or
WPF.

A regular html page can be designed (and usually is) using photoshop,
then imported into Firework where you "cut" it and create your page.
That's why I believe that the OP is trying to create win apps like he
does web.

That's why I said that they are useless (for the most part) in win
forms.
 
Ignacio said:
A regular html page can be designed (and usually is) using photoshop,
then imported into Firework where you "cut" it and create your page.
That's why I believe that the OP is trying to create win apps like he
does web.

That's why I said that they are useless (for the most part) in win
forms.

I disagree. The same pieces of the "page", which are actually small
bitmaps, can be used in Windows Forms as the Form background, Panel
background, Button foreground, and so on.
 
Back
Top