d2jsp
Log InRegister
d2jsp Forums > Off-Topic > Computers & IT > Programming & Development > Looking For Gui Tutorials From Scratch
Add Reply New Topic New Poll
Member
Posts: 8,564
Joined: Jun 13 2006
Gold: 4.75
Dec 14 2012 03:28pm
I would like to design a GUI without using third party so it can be exactly how i want it to be.
I Haven't had classes on GUI and i can't seem to find anything to learn from.

Do someone has a good website, book or anything on that particular subject?
Targeted language C++ or C#
Member
Posts: 4,605
Joined: Sep 15 2011
Gold: 9,464.00
Dec 14 2012 03:45pm
any decent class on GUIs won't really focus on building stuff without relying on well-known APIs and libraries for whatever respective language it's taught in. additionally, the material of said class shouldn't really be so much on the coding aspect as it is on the coding architecture (MVC, MVP) and on UI design principles.

in the meantime, google is a good place to start. do searches for things like c# ui apis or c# ui development, or something along those lines.

here's a pretty decent one:
http://msdn.microsoft.com/en-us/library/ms754130.aspx
Member
Posts: 8,564
Joined: Jun 13 2006
Gold: 4.75
Dec 14 2012 04:14pm
Quote (irimi @ 14 Dec 2012 16:45)
any decent class on GUIs won't really focus on building stuff without relying on well-known APIs and libraries for whatever respective language it's taught in.  additionally, the material of said class shouldn't really be so much on the coding aspect as it is on the coding architecture (MVC, MVP) and on UI design principles.

in the meantime, google is a good place to start.  do searches for things like c# ui apis or c# ui development, or something along those lines.

here's a pretty decent one:
http://msdn.microsoft.com/en-us/library/ms754130.aspx


I already know about MVC.
I did try to find stuff on google, seems like i failed. I used GUI and not UI in my searches, that might be the reason.

Thanks for the link
Member
Posts: 10,812
Joined: Oct 15 2009
Gold: Locked
Warn: 20%
Dec 14 2012 06:27pm
i would give up on the 'from scratch" bit, no reason to reinvent the wheel
Member
Posts: 32,925
Joined: Jul 23 2006
Gold: 3,804.50
Dec 14 2012 06:31pm
Quote (Fawar @ Dec 14 2012 04:28pm)
I would like to design a GUI without using third party so it can be exactly how i want it to be.
I Haven't had classes on GUI and i can't seem to find anything to learn from.

Do someone has a good website, book or anything on that particular subject?
Targeted language C++ or C#


can you describe your purpose? or what "exactly how i want it to be" actually is?

if this is a web project, you can create web controls which combine other things and you can add your own functionality, events, etc and use css to make it look however you want it to. you can use your own images too if that suits you.
Member
Posts: 8,564
Joined: Jun 13 2006
Gold: 4.75
Dec 14 2012 06:41pm
Quote (carteblanche @ 14 Dec 2012 19:31)
can you describe your purpose? or what "exactly how i want it to be" actually is?

if this is a web project, you can create web controls which combine other things and you can add your own functionality, events, etc and use css to make it look however you want it to. you can use your own images too if that suits you.


I Dont want to use the windows forms (C#) or Netbeans for Java.
I want to create customs and if i do achieve some good results i would probably reuse that in a game i plan on making.
Member
Posts: 32,925
Joined: Jul 23 2006
Gold: 3,804.50
Dec 14 2012 06:51pm
Quote (Fawar @ Dec 14 2012 07:41pm)
I Dont want to use the windows forms (C#) or Netbeans for Java.
I want to create customs and if i do achieve some good results i would probably reuse that in a game i plan on making.


if you want it specifically for gaming, you should have said so in the first place. many gaming frameworks have some capability for that separate from normal winforms. i know android does, and i imagine XNA does too. Google around for that.
Member
Posts: 8,564
Joined: Jun 13 2006
Gold: 4.75
Dec 14 2012 09:43pm
Quote (carteblanche @ 14 Dec 2012 19:51)
if you want it specifically for gaming, you should have said so in the first place. many gaming frameworks have some capability for that separate from normal winforms. i know android does, and i imagine XNA does too. Google around for that.


Gaming is a exemple.
I want to be able to create my own menus, my own buttons, my own grids.
I have many idea i was to do, yet the gaming interface is not always the good one, that's why i want to understand what is going on below those predefined interface.
Member
Posts: 32,925
Joined: Jul 23 2006
Gold: 3,804.50
Dec 14 2012 10:05pm
Since you mentioned java, look at awt and swing's source code since they're open source.
Member
Posts: 1,358
Joined: Dec 30 2012
Gold: 0.10
Dec 30 2012 03:11pm
alleg or SDL?

This post was edited by SelfTaught on Dec 30 2012 03:11pm
Go Back To Programming & Development Topic List
Add Reply New Topic New Poll