Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8773021
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T18:11:15+00:00 2026-06-13T18:11:15+00:00

I am blind, and I have trouble making nice looking guis. This really frustrates

  • 0

I am blind, and I have trouble making nice looking guis. This really frustrates me because while I am a capable developer, I cannot complete projects on my own because I am unable to make the front-end. I am wondering if any of you know of some automatic solution which produces professional looking guis? They don’t have to be fancy, most of the time we are talking about basic forms/wizzard style layouts. I basically need to get away from specifying pixel heights, widths, and positions. I need something that figures out how to make things match in terms of sizes and positions in relation to one another, resize well, etc. My primary target platform is Windows. I have worked with WxWidgets before and have been very satisfied, but I needed to hire another person to do the design which I cannot keep doing longterm. I have no problem writing code, I just am not able to effectively figure out how to position and set the size for controls on the form.

Any advice would be appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T18:11:17+00:00Added an answer on June 13, 2026 at 6:11 pm

    I doubt there could ever be a perfect substitute for someone with keen eyesight, a passion for the work and lots of time to devote to dragging and dropping, pushing and pulling at the the widgets of a GUI until everything is just so.

    However, if you are satisfied with a workaday solution that gets the job done, then I think that the wxWidgets sizers do a reasonable job. Are you familiar with these? Specify how much space you want to leave around your widgets, and whether you want them arranged vertically or horizontally. Now all you have to do is add your widgets in order to the sizer, and the sizer will automatically arrange them in an often quite decent first pass sort of way.

    As a simple example, here is a simple form.

    The code:

    wxPanel * panel = new wxPanel(this,-1,wxPoint(-1,-1),wxSize(1000,1000));
    
    wxSizerFlags szrflags(0);
    szrflags.Border(wxALL,5);
    
    wxBoxSizer * szrCRUDForm = new wxBoxSizer(wxVERTICAL );
    
    wxFlexGridSizer * szr = new wxFlexGridSizer(2,1,1);
    
    wxStaticText * field1text =  new wxStaticText(panel,-1,"Entry Field #1");
    wxTextCtrl   * field1ctrl =  new wxTextCtrl(panel,-1,"              ");
    wxStaticText * field2text =  new wxStaticText(panel,-1,"Second Entry Field");
    wxTextCtrl   * field2ctrl =  new wxTextCtrl(panel,-1,"              ");
    wxStaticText * field3text =  new wxStaticText(panel,-1,
        "A very big entry field\n"
        "with a lot of description\n"
        "Spread over several long lines of text");
    wxTextCtrl   * field3ctrl =  new wxTextCtrl(panel,-1,"",wxPoint(-1,-1),wxSize(600,-1));
    wxStaticText * field4text =  new wxStaticText(panel,-1,"Yet another Field");
    wxTextCtrl   * field4ctrl =  new wxTextCtrl(panel,-1,"              ");
    
    szr->Add( field1text,szrflags );
    szr->Add( field1ctrl,szrflags );
    szr->Add( field2text,szrflags );
    szr->Add( field2ctrl,szrflags );
    szr->Add( field3text,szrflags );
    szr->Add( field3ctrl,szrflags );
    szr->Add( field4text,szrflags );
    szr->Add( field4ctrl,szrflags );
    
    wxBoxSizer * szrButtons = new wxBoxSizer( wxHORIZONTAL );
    szrButtons->Add( new wxButton(panel,-1,L"CREATE"),szrflags);
    szrButtons->Add( new wxButton(panel,-1,L"READ"),szrflags);
    szrButtons->Add( new wxButton(panel,-1,L"UPDATE"),szrflags);
    szrButtons->Add( new wxButton(panel,-1,L"DELETE"),szrflags);
    
    szrCRUDForm->Add( szr );
    szrCRUDForm->Add( szrButtons );
    
    SetSizer(szrCRUDForm);
    

    Produces the following GUI, without requiring any pushing or pulling

    enter image description here

    Here is an introductory, rather crude, tutorial http://neume.sourceforge.net/sizerdemo/

    Here is something more sophisticated http://zetcode.com/tutorials/wxwidgetstutorial/layoutmanagement/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this Caliburn.Micro sample project I'm putting together and I am having trouble
I am having a little trouble getting this to work. I have several anchor
I'm having trouble explaining this but here it goes: I have a custom accordion
i'm having trouble getting a clear answer for this. I have a Static class
i have developed some applications for blind which makes them to use basic mobile
I am having a table in which we have some 20 million entries inserted(blind
I'm getting XAML-blind I'm afraid. I'm developing a MS Surface application and I have
I think this is a pretty simple question but I'm having trouble finding the
I have a little trouble getting gettext to work. I made a simple test
I've been having trouble with some databinding with WPF. I have a class to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.