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. General Programming
  3. C / C++ / MFC
  4. How To Beautify the Software Interface In MFC?

How To Beautify the Software Interface In MFC?

Scheduled Pinned Locked Moved C / C++ / MFC
questionc++designtutorial
13 Posts 9 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.
  • W wb_program

    Hi all, Recently,I have to design a small soft,but how to make the software interface on our own style is beyond us.As we all known, the window created by MFC is very ugly.Some software interface is so attractive,but how to imatate?(English is not my mother language and this is my first time ashing question,I am sorry I can't declared my doubt clearly.) Thanks

    M Offline
    M Offline
    Maximilien
    wrote on last edited by
    #4

    wb_program wrote:

    but how to imatate?

    With a lot of work and knowledge with Win32 and advanced MFC.

    This signature was proudly tested on animals.

    1 Reply Last reply
    0
    • W wb_program

      Hi all, Recently,I have to design a small soft,but how to make the software interface on our own style is beyond us.As we all known, the window created by MFC is very ugly.Some software interface is so attractive,but how to imatate?(English is not my mother language and this is my first time ashing question,I am sorry I can't declared my doubt clearly.) Thanks

      C Offline
      C Offline
      CPallini
      wrote on last edited by
      #5

      wb_program wrote:

      As we all known, the window created by MFC is very ugly.

      Hey man, how did you gain access to my MFC applications? :-D (BTW: there are many beautyful applications written using MFC) :)

      If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
      This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
      [My articles]

      W 1 Reply Last reply
      0
      • W wb_program

        Hi all, Recently,I have to design a small soft,but how to make the software interface on our own style is beyond us.As we all known, the window created by MFC is very ugly.Some software interface is so attractive,but how to imatate?(English is not my mother language and this is my first time ashing question,I am sorry I can't declared my doubt clearly.) Thanks

        B Offline
        B Offline
        bulg
        wrote on last edited by
        #6

        You might like this[^]. Also, search the code project for CPictureEx class for displaying simple animated .gif. If you have time to get into "OwnerDraw" options, then you can _really_ make anything look like whatever you want, even with MFC

        1 Reply Last reply
        0
        • C CPallini

          wb_program wrote:

          As we all known, the window created by MFC is very ugly.

          Hey man, how did you gain access to my MFC applications? :-D (BTW: there are many beautyful applications written using MFC) :)

          If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
          This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
          [My articles]

          W Offline
          W Offline
          wb_program
          wrote on last edited by
          #7

          I know there are many beautyful applications written using MFC,but I can't make it :sigh:

          C C 2 Replies Last reply
          0
          • W wb_program

            Hi all, Recently,I have to design a small soft,but how to make the software interface on our own style is beyond us.As we all known, the window created by MFC is very ugly.Some software interface is so attractive,but how to imatate?(English is not my mother language and this is my first time ashing question,I am sorry I can't declared my doubt clearly.) Thanks

            T Offline
            T Offline
            Taran9
            wrote on last edited by
            #8

            Use Adobe Photoshop to make custom defined bitmaps of whatever design you want and paste it onto the dialogs during initialization + OnPaint handlers. Simple! There are numerous code samples available on this site.

            1 Reply Last reply
            0
            • W wb_program

              I know there are many beautyful applications written using MFC,but I can't make it :sigh:

              C Offline
              C Offline
              Chandrasekharan P
              wrote on last edited by
              #9

              Making a good GUI is not that difficult as the way you say. there are lots of applications available over the net. and you just need some imagination of how the screen should look like.. :-)

              1 Reply Last reply
              0
              • W wb_program

                I know there are many beautyful applications written using MFC,but I can't make it :sigh:

                C Offline
                C Offline
                CPallini
                wrote on last edited by
                #10

                This [^] may help. :)

                If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
                This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
                [My articles]

                R 1 Reply Last reply
                0
                • W wb_program

                  Hi all, Recently,I have to design a small soft,but how to make the software interface on our own style is beyond us.As we all known, the window created by MFC is very ugly.Some software interface is so attractive,but how to imatate?(English is not my mother language and this is my first time ashing question,I am sorry I can't declared my doubt clearly.) Thanks

                  R Offline
                  R Offline
                  Rajesh R Subramanian
                  wrote on last edited by
                  #11

                  If you're using VS 2008, you can download the MFC Feature Pack[^], which introduces a lot of new classes for UI development. You may have a look at the reference[^] page too.

                  It is a crappy thing, but it's life -^ Carlo Pallini

                  1 Reply Last reply
                  0
                  • C CPallini

                    This [^] may help. :)

                    If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
                    This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
                    [My articles]

                    R Offline
                    R Offline
                    Rajesh R Subramanian
                    wrote on last edited by
                    #12

                    You beat me to it. 5. :) Klingon programmers don't care about beautification of the UI, but that's a different thing. :)

                    It is a crappy thing, but it's life -^ Carlo Pallini

                    C 1 Reply Last reply
                    0
                    • R Rajesh R Subramanian

                      You beat me to it. 5. :) Klingon programmers don't care about beautification of the UI, but that's a different thing. :)

                      It is a crappy thing, but it's life -^ Carlo Pallini

                      C Offline
                      C Offline
                      CPallini
                      wrote on last edited by
                      #13

                      Rajesh R Subramanian wrote:

                      Klingon programmers don't care about beautification of the UI

                      That's right and, moreover, Klingon programmers don't defend (nor use) MFC. I lost 100 Klingon points indeed... :(( :-D

                      If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
                      This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
                      [My articles]

                      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