Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Basic UI Design?: Placement, Appearance, Function

Basic UI Design?: Placement, Appearance, Function

Scheduled Pinned Locked Moved The Lounge
designquestion
55 Posts 24 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • L Lost User

    I'd still recommend printing the ux-guide and reading the entire thing. Though it is aiming at the Windows-platform, the ideas are universal. If you see a button, you know you can click it. You also "know" that you cannot edit text in a label, only in a textbox. Those would be rather basic principles, right? :) Gmail is not your app, so you might not have full control on how the mails are rendered.

    Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^][](X-Clacks-Overhead: GNU Terry Pratchett)

    M Offline
    M Offline
    maze3
    wrote on last edited by
    #11

    i assume you mean the Design basics for Desktop applications (Windows)[^] posted by Maximilien, yeah some interesting points, thanks

    L 1 Reply Last reply
    0
    • L Lost User

      As already noted, there is a (free) ux guide from Microsoft, sporting over 600 pages worth of information. It is not just guidelines, it contains argumentation on why they do stuff that way. Download it, print it, and learn to dream it - a great way to end those annoying discussions.

      Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^][](X-Clacks-Overhead: GNU Terry Pratchett)

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #12

      Eddy Vluggen wrote:

      here is a (free) ux guide from Microsoft, sporting over 600 pages worth of information.

      ummm, didn't microsoft give us metro (or whatever they're calling it today ... but maybe not tomorrow). Didn't they give us the new Windows 10 looks - plural because not consistent. jokes aside: that free guide from Microsoft, don't waste you're bloody time, 600 pages of shit. Microsoft have some pretty good software but they've never lead in design, never. case in point: compare the UX of apple to Microsoft past and present: ... which one looks better? ... no, make that which one has always looked better.

      Sin tack the any key okay

      L R 2 Replies Last reply
      0
      • M maze3

        i assume you mean the Design basics for Desktop applications (Windows)[^] posted by Maximilien, yeah some interesting points, thanks

        L Offline
        L Offline
        Lost User
        wrote on last edited by
        #13

        Dunno; looks like it is just a small part of the guide. http://www.glyfx.com/useruploads/files/UXGuide.pdf Sorry, not clickable link as the websites editor goes nuts when pasting a PDF-link.

        Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^][](X-Clacks-Overhead: GNU Terry Pratchett)

        1 Reply Last reply
        0
        • L Lost User

          Eddy Vluggen wrote:

          here is a (free) ux guide from Microsoft, sporting over 600 pages worth of information.

          ummm, didn't microsoft give us metro (or whatever they're calling it today ... but maybe not tomorrow). Didn't they give us the new Windows 10 looks - plural because not consistent. jokes aside: that free guide from Microsoft, don't waste you're bloody time, 600 pages of shit. Microsoft have some pretty good software but they've never lead in design, never. case in point: compare the UX of apple to Microsoft past and present: ... which one looks better? ... no, make that which one has always looked better.

          Sin tack the any key okay

          L Offline
          L Offline
          Lost User
          wrote on last edited by
          #14

          Perhaps you should try reading it before you comment. The UX Guide does not only document some good ideas, it explains the reasoning. Does not mean that the Office-team adheres to it, as some dimwits NEED a new UI to accept it as a "new" product. I support Microsoft in both decisions.

          Lopatir wrote:

          case in point: compare the UX of apple to Microsoft past and present: ... which one looks better?

          UX design has nothing to do with "looking better". And yes, the market has decided with their wallets - the fruit was never to be taken serious.

          Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^][](X-Clacks-Overhead: GNU Terry Pratchett)

          L 1 Reply Last reply
          0
          • M maze3

            was wondering is there was some kind of Basic ui design principle that someone might have written a blog that follows the line of Placement: where is control/component placed Appearance: how does component look. Font, size, color, word wrapping, ect... Function: what does component do. One thing, multiple things depending on situation. maybe something with different words?

            J Offline
            J Offline
            Jeremy Falcon
            wrote on last edited by
            #15

            In addition to what Foothill said, think about workflow. Make the app cater around that, as a whole. Quite literally, the user's interaction with the app should flow like a river in a cohesive design. If you have them jumping all over the place it'll be harder to use. Also, read up on UX designs and remember, less is more. For a business app that people use every day, don't add the extra flashy stuff. It gets old after the novelty wears off. If it's something that's meant to be seen only once or twice then by add means add the flashy stuff however.

            Jeremy Falcon

            K 1 Reply Last reply
            0
            • F Foothill

              When I build a UI, there's a couple of fundamentals I use to guide where to put things.

              • Order of importance
                • Most humans start at the top so the most important data and used functions go there
                • Infrequently used elements are put at the bottom
                • Match the culture reading direction: some read left to right, right to left, or top to bottom. Controls should match natural text progression.
              • Group controls
                • If a group of controls displays and manipulates data for a single class of object (or any data), keep them close together.
                • Too much data to fit on a single display? Combat this with drill-down functionality such as tabs, popups**, or dialogs**.
              • Lead the eyes
                • Use borders and colors to naturally lead the eyes to important parts of the UI.
                • The use of darker backgrounds with progressively lighter backgrounds around your functional groups.
                • Use colored backgrounds to clearly demarcate UI parts the have different functions.

              And above all, get constant feedback by those who use it during all stages of development; listen to them and incorporate their ideas into the design (if possible ;P ). ** Don't use actual popups and dialogs that exist over the top of your app/page. Most users see them as disruptive and annoying. I find the most positive feedback from pseudo-popups that slide/fade in, obscuring your content, in the top visual layer in the app/page.

              if (Object.DividedByZero == true) { Universe.Implode(); } Meus ratio ex fortis machina. Simplicitatis de formae ac munus. -Foothill, 2016

              J Offline
              J Offline
              Jeremy Falcon
              wrote on last edited by
              #16

              Woah, a useful post... what gives? :confused:

              Jeremy Falcon

              F 1 Reply Last reply
              0
              • J Jeremy Falcon

                Woah, a useful post... what gives? :confused:

                Jeremy Falcon

                F Offline
                F Offline
                Foothill
                wrote on last edited by
                #17

                It's Tuesday and I was avoiding actual work :laugh:

                if (Object.DividedByZero == true) { Universe.Implode(); } Meus ratio ex fortis machina. Simplicitatis de formae ac munus. -Foothill, 2016

                J 1 Reply Last reply
                0
                • F Foothill

                  It's Tuesday and I was avoiding actual work :laugh:

                  if (Object.DividedByZero == true) { Universe.Implode(); } Meus ratio ex fortis machina. Simplicitatis de formae ac munus. -Foothill, 2016

                  J Offline
                  J Offline
                  Jeremy Falcon
                  wrote on last edited by
                  #18

                  Oh snap.

                  Jeremy Falcon

                  1 Reply Last reply
                  0
                  • L Lost User

                    Perhaps you should try reading it before you comment. The UX Guide does not only document some good ideas, it explains the reasoning. Does not mean that the Office-team adheres to it, as some dimwits NEED a new UI to accept it as a "new" product. I support Microsoft in both decisions.

                    Lopatir wrote:

                    case in point: compare the UX of apple to Microsoft past and present: ... which one looks better?

                    UX design has nothing to do with "looking better". And yes, the market has decided with their wallets - the fruit was never to be taken serious.

                    Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^][](X-Clacks-Overhead: GNU Terry Pratchett)

                    L Offline
                    L Offline
                    Lost User
                    wrote on last edited by
                    #19

                    Skimmed it some time ago, lot of typical boiler plate basic info but really nothing you wouldn't get from the idiots guide (in way less words.) Their portfolio is out there for all to see, and when it comes to UX it [no pun] 'aint pretty! Better to ask somebody that demonstrates actual ability rather then paraphrase the obvious. Beauty queens, six year old kids and clowns all know how to put on make up. Which would you ask for advice on making yourself look good?

                    Sin tack the any key okay

                    L 1 Reply Last reply
                    0
                    • M maze3

                      was wondering is there was some kind of Basic ui design principle that someone might have written a blog that follows the line of Placement: where is control/component placed Appearance: how does component look. Font, size, color, word wrapping, ect... Function: what does component do. One thing, multiple things depending on situation. maybe something with different words?

                      G Offline
                      G Offline
                      Gary Wheeler
                      wrote on last edited by
                      #20

                      The most basic UI design principle is this: Consider your audience. Too many developers approach UI from the direction of "I have to support this set of operations on that set of data", and they design their UI accordingly. While that approach may satisfy requirements, it probably won't satisfy your users. You need to put yourself in your user's viewpoint. Imagine yourself doing their job using your application. What should the application do to make that job easier? What operations do they always need? What operations are optional? Is there a required or natural order to those operations? What is the vocabulary employed by the user? In some cases you need to consider the user's level of education, training, and so on. If you are localizing your application, you need to account for language translation issues. Text wrapping, hyphenation, and other layout concerns can be problematic. One key notion is to meet your user's expectations - don't surprise them, and certainly don't frustrate them.

                      Software Zen: delete this;

                      1 Reply Last reply
                      0
                      • M maze3

                        was wondering is there was some kind of Basic ui design principle that someone might have written a blog that follows the line of Placement: where is control/component placed Appearance: how does component look. Font, size, color, word wrapping, ect... Function: what does component do. One thing, multiple things depending on situation. maybe something with different words?

                        D Offline
                        D Offline
                        dandy72
                        wrote on last edited by
                        #21

                        We had it all figured out with windows, menu, toolbars, tooltips, right-clicks, color, etc. Now for some reason it's more desirable to have black and white UIs with functionality that is barely discoverable, all in the name of accommodating touch screens. IMNSHO, the "simplification" process apps are currently going through is not an "improvement".

                        1 Reply Last reply
                        0
                        • L Lost User

                          Eddy Vluggen wrote:

                          here is a (free) ux guide from Microsoft, sporting over 600 pages worth of information.

                          ummm, didn't microsoft give us metro (or whatever they're calling it today ... but maybe not tomorrow). Didn't they give us the new Windows 10 looks - plural because not consistent. jokes aside: that free guide from Microsoft, don't waste you're bloody time, 600 pages of shit. Microsoft have some pretty good software but they've never lead in design, never. case in point: compare the UX of apple to Microsoft past and present: ... which one looks better? ... no, make that which one has always looked better.

                          Sin tack the any key okay

                          R Offline
                          R Offline
                          Rick York
                          wrote on last edited by
                          #22

                          I couldn't agree more. I had a customer who was like that. They gave us a mountain of specifications and rules and then we found they don't actually follow them but we had to.

                          1 Reply Last reply
                          0
                          • L Lost User

                            Skimmed it some time ago, lot of typical boiler plate basic info but really nothing you wouldn't get from the idiots guide (in way less words.) Their portfolio is out there for all to see, and when it comes to UX it [no pun] 'aint pretty! Better to ask somebody that demonstrates actual ability rather then paraphrase the obvious. Beauty queens, six year old kids and clowns all know how to put on make up. Which would you ask for advice on making yourself look good?

                            Sin tack the any key okay

                            L Offline
                            L Offline
                            Lost User
                            wrote on last edited by
                            #23

                            Like I said, try reading it :)

                            Lopatir wrote:

                            Beauty queens, six year old kids and clowns all know how to put on make up. Which would you ask for advice on making yourself look good?

                            UX design is not about "looking good". That is exactly what went wrong - people who assumed they knew better and who imagined they could create something "cooler" looking. UX design is about discoverability, usability; it is the difference between the old DOS 5.x manual and the manual that came with Windows 95 (hint: none). Terms like "pretty" are not applicable in UX design; and from a developer I would not accept a marketing-like approach :|

                            Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^][](X-Clacks-Overhead: GNU Terry Pratchett)

                            1 Reply Last reply
                            0
                            • F Foothill

                              When I build a UI, there's a couple of fundamentals I use to guide where to put things.

                              • Order of importance
                                • Most humans start at the top so the most important data and used functions go there
                                • Infrequently used elements are put at the bottom
                                • Match the culture reading direction: some read left to right, right to left, or top to bottom. Controls should match natural text progression.
                              • Group controls
                                • If a group of controls displays and manipulates data for a single class of object (or any data), keep them close together.
                                • Too much data to fit on a single display? Combat this with drill-down functionality such as tabs, popups**, or dialogs**.
                              • Lead the eyes
                                • Use borders and colors to naturally lead the eyes to important parts of the UI.
                                • The use of darker backgrounds with progressively lighter backgrounds around your functional groups.
                                • Use colored backgrounds to clearly demarcate UI parts the have different functions.

                              And above all, get constant feedback by those who use it during all stages of development; listen to them and incorporate their ideas into the design (if possible ;P ). ** Don't use actual popups and dialogs that exist over the top of your app/page. Most users see them as disruptive and annoying. I find the most positive feedback from pseudo-popups that slide/fade in, obscuring your content, in the top visual layer in the app/page.

                              if (Object.DividedByZero == true) { Universe.Implode(); } Meus ratio ex fortis machina. Simplicitatis de formae ac munus. -Foothill, 2016

                              Z Offline
                              Z Offline
                              Zterh
                              wrote on last edited by
                              #24

                              to the point! :thumbsup::thumbsup::thumbsup:

                              1 Reply Last reply
                              0
                              • M maze3

                                was wondering is there was some kind of Basic ui design principle that someone might have written a blog that follows the line of Placement: where is control/component placed Appearance: how does component look. Font, size, color, word wrapping, ect... Function: what does component do. One thing, multiple things depending on situation. maybe something with different words?

                                T Offline
                                T Offline
                                theoldfool
                                wrote on last edited by
                                #25

                                [^] that should do it. :wtf:

                                Arguing with a woman is like reading the Software License Agreement. In the end, you ignore everything and click "I agree". Anonymous

                                L K 2 Replies Last reply
                                0
                                • T theoldfool

                                  [^] that should do it. :wtf:

                                  Arguing with a woman is like reading the Software License Agreement. In the end, you ignore everything and click "I agree". Anonymous

                                  L Offline
                                  L Offline
                                  Lost User
                                  wrote on last edited by
                                  #26

                                  X|

                                  Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^][](X-Clacks-Overhead: GNU Terry Pratchett)

                                  1 Reply Last reply
                                  0
                                  • M maze3

                                    was wondering is there was some kind of Basic ui design principle that someone might have written a blog that follows the line of Placement: where is control/component placed Appearance: how does component look. Font, size, color, word wrapping, ect... Function: what does component do. One thing, multiple things depending on situation. maybe something with different words?

                                    C Offline
                                    C Offline
                                    C P User 3
                                    wrote on last edited by
                                    #27

                                    Excellent topic. This is the kind of stuff that makes the internet worth having in the home.

                                    1 Reply Last reply
                                    0
                                    • F Foothill

                                      When I build a UI, there's a couple of fundamentals I use to guide where to put things.

                                      • Order of importance
                                        • Most humans start at the top so the most important data and used functions go there
                                        • Infrequently used elements are put at the bottom
                                        • Match the culture reading direction: some read left to right, right to left, or top to bottom. Controls should match natural text progression.
                                      • Group controls
                                        • If a group of controls displays and manipulates data for a single class of object (or any data), keep them close together.
                                        • Too much data to fit on a single display? Combat this with drill-down functionality such as tabs, popups**, or dialogs**.
                                      • Lead the eyes
                                        • Use borders and colors to naturally lead the eyes to important parts of the UI.
                                        • The use of darker backgrounds with progressively lighter backgrounds around your functional groups.
                                        • Use colored backgrounds to clearly demarcate UI parts the have different functions.

                                      And above all, get constant feedback by those who use it during all stages of development; listen to them and incorporate their ideas into the design (if possible ;P ). ** Don't use actual popups and dialogs that exist over the top of your app/page. Most users see them as disruptive and annoying. I find the most positive feedback from pseudo-popups that slide/fade in, obscuring your content, in the top visual layer in the app/page.

                                      if (Object.DividedByZero == true) { Universe.Implode(); } Meus ratio ex fortis machina. Simplicitatis de formae ac munus. -Foothill, 2016

                                      C Offline
                                      C Offline
                                      C P User 3
                                      wrote on last edited by
                                      #28

                                      Foothill wrote:

                                      Lead the eyes

                                      My sole opinion: That is The pillar of good UI design.

                                      1 Reply Last reply
                                      0
                                      • M maze3

                                        was wondering is there was some kind of Basic ui design principle that someone might have written a blog that follows the line of Placement: where is control/component placed Appearance: how does component look. Font, size, color, word wrapping, ect... Function: what does component do. One thing, multiple things depending on situation. maybe something with different words?

                                        A Offline
                                        A Offline
                                        Adam David Hill
                                        wrote on last edited by
                                        #29

                                        There is something very close to that in Human Computer Interaction (academic field of usability). This article will give you a quick explanation: Visibility, Affordance & Feedback - The Quixotic Engineer[^]

                                        M 1 Reply Last reply
                                        0
                                        • V V 0

                                          start here [[^](http://lmgtfy.com/?q=UI+design+tips)] ?

                                          V.

                                          (MQOTD rules and previous solutions)

                                          K Offline
                                          K Offline
                                          kalberts
                                          wrote on last edited by
                                          #30

                                          Someone once said that a captialist is a man who knows the price of everything and the value of nothing. I see a parallell in those "good helpers" whose only contribution is to state "Why don't you just f* google it?" Well, of course! Maybe, a few years from now, those "good helpers" will understand that "just f* google it" is a "been there, done that". A google hit list in itself is just data, it is not information. (There's the parallel to price vs. value!) The asker of course knows that he will get gazillions of "answers" from google, but which of those are good answers? Which are non-info? Which are garbage? Frequently, when I ask for advice and suspect that some wiseguy will reply with a "Why don't you just...", I add to the question: "I have googled it, using the search terms x1, x2, x3 and x4, but that didn't bring up anything of value. I need more specific references!" - yet, some wiseguys believe that I ask for two dozen new keywords: "You could google for y1, y2, y3... y31" - and quite obviously, the good helper never googled those terms himself before providing them to others as a "solution" to the problem. It does happen that someone provides good and valuable search terms, or specific links/references, but that requires that I am very explicit in my wording to keep those non-wisdom wiseguys from drowning me with non-information that they don't understand a bit of themselves. All they known is to pick a sequence of possibly (but maybe vaguely) related terms an prefix them with "Why don't you google ...". Yes, I frequently get frustrated by non-helping good helpers. So I am airing frustration here. I look forward to the day when "Just google it!" is no longer classified as "helping to solve the problem".

                                          V 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups