graphics in c#

S

sahel

i want to learn c sharp graphics plz tell me some web
i want to learn more than changing background color
thanks
 
P

Patrice

It doesn't make sense. A console application is a character mode device :
http://en.wikipedia.org/wiki/Console_application

So you can't. Ask your teacher about Windows Forms or WPF applications.

If you want to learn about graphics you could start by studying :
http://msdn.microsoft.com/en-us/library/da0f23z7.aspx (Getting Started with
Graphics Programming).

If this is just to use a picture as a background from a form this is :
http://msdn.microsoft.com/en-us/library/system.windows.forms.control.backgroundimage(VS.80).aspx
(as a Form is a control it applies as well to Forms).
 
S

sahel

It doesn't make sense. A console application is a character mode device :http://en.wikipedia.org/wiki/Console_application

So you can't. Ask your teacher about Windows Forms or WPF applications.

If you want to learn about graphics you could start by studying :http://msdn.microsoft.com/en-us/library/da0f23z7.aspx(Getting Started with
Graphics Programming).

If this is just to use a picture as a background from a form this is :http://msdn.microsoft.com/en-us/library/system.windows.forms.control....
(as a Form is a control it applies as well to Forms).
hi;
thanks patrice;
one else question how i could be a very good programmer i mean how
time per a day i could get to it ...
& what to do?
 
J

Jeff Gaines

one else question how i could be a very good programmer i mean how
time per a day i could get to it ...

Set yourself a project, specify it and code it. Something like an address
book would require you to set out a form with a variety of controls, write
an address class and read from/write to a database. That would be quite a
good base for future programs.
 
P

Patrice

Been a long time for me.

IMO this is more about fullfilling objectives rather than time. Aims at a
simple app and goes throught until achievement. Then move on something more
complex (but simple enough to be achievable). Each step will increase your
knowledge/experience...

--
Patrice

"sahel" <[email protected]> a écrit dans le message de groupe de
discussion :
(e-mail address removed)...
 
A

Arne Vajhøj

one else question how i could be a very good programmer i mean how
time per a day i could get to it ...
& what to do?

You get good at coding C# by:
- studying the C# language, the .NET framework
and general programming topics
- practice coding

It is said to take 10 years to master something.

But you will be making some good progress much
sooner than that.

But you definitely needs to think months not days.

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

help me 6
help me! 5
C sharp problem 1
Advice on moving to C# 5
Database connection from C# 1
i want to learn c# 1
how to convert this C function into C-Sharp ? 1
Three objects for handling databases in C# 0

Top