Top "User-interface" questions

User Interface (UI) is the system through which people interact with a computer.

How to center a Window in Java?

What's the easiest way to centre a java.awt.Window, such as a JFrame or a JDialog?

java swing user-interface awt
Adding new line of data to TextBox

I'm doing a chat client, and currently I have a button that will display data to a multi-line textbox when …

c# .net winforms user-interface textbox
How do you add UI inside cells in a google spreadsheet using app script?

I'd like to add buttons to specific cells in Google docs spreadsheet. The apps script UI documentation talks about how …

user-interface google-apps-script google-sheets
How do I put the image on the right side of the text in a UIButton?

I don't want to use a subview if I can avoid it. I want a UIButton with a background image, …

ios user-interface layout uibutton
How do I display the current value of an Android Preference in the Preference summary?

This must come up very often. When the user is editing preferences in an Android app, I'd like them to …

android user-interface android-preferences
Create a directly-executable cross-platform GUI app using Python

Python works on multiple platforms and can be used for desktop and web applications, thus I conclude that there is …

python user-interface deployment tkinter release-management
How to clear the Entry widget after a button is pressed in Tkinter?

I'm trying to clear the Entry widget after the user presses a button using Tkinter. I tried using ent.delete(0, …

python user-interface widget tkinter
How to close a GUI when I push a JButton?

Does anyone know how to make a jbutton close a gui? I think it is like System.CLOSE(0); but that …

java swing user-interface jbutton
How do you add an ActionListener onto a JButton in Java

private JButton jBtnDrawCircle = new JButton("Circle"); private JButton jBtnDrawSquare = new JButton("Square"); private JButton jBtnDrawTriangle = new JButton("Triangle"); private JButton …

java swing user-interface jbutton actionlistener