Skip to content Skip to sidebar Skip to footer
Showing posts with the label User Interface

Wxpython — Staticbox Sizer Resizing Static Boxes

Here is a minimal example of my code that should run by itself -- run as is, everything is laid out… Read more Wxpython — Staticbox Sizer Resizing Static Boxes

How Do I Load An Image Into A Kivy Window Using A Button?

I am trying to use kivy with Python to develop a quick app with sliders where one has to use the sl… Read more How Do I Load An Image Into A Kivy Window Using A Button?

What Is The Difference Between Event.x,event.y And Event.x_root,event.y_root In Tkinter?

import tkinter as tk from tkinter import ttk win=tk.Tk() def get_event(event): print(f'{ev… Read more What Is The Difference Between Event.x,event.y And Event.x_root,event.y_root In Tkinter?

Tkinter Keeping Window On Top All Times On Macos

I'm trying to create a screen 'curtain' which blocks parts of the screen except for the… Read more Tkinter Keeping Window On Top All Times On Macos

Why Is My Kivy Actionbar Gone?

Good evening, I'm trying to combine kivy's actionbar with a screenmanager. I've gotten … Read more Why Is My Kivy Actionbar Gone?

How To Stretch Cell Horizontally Using Grid In Tkinter?

I was using tkinter to make simple GUI and I wanted to make it too simple and cool so I wanted to t… Read more How To Stretch Cell Horizontally Using Grid In Tkinter?

Scale An Image In Gtk

In GTK, how can I scale an image? Right now I load images with PIL and scale them beforehand, but i… Read more Scale An Image In Gtk

Requests Module Missingschema Error In Tkinter Gui Due To Inability To Fill Variable Before Execution Of Mainloop: How To Resolve This?

I'm trying to build a GUI over some existing code and I'm running into a MissingSchema erro… Read more Requests Module Missingschema Error In Tkinter Gui Due To Inability To Fill Variable Before Execution Of Mainloop: How To Resolve This?

Getting Traceback And Attributeerror: 'nonetype' Object Has No Attribute 'get'

So I am trying to make a simple calculator program using Tkinter and python. I have some general c… Read more Getting Traceback And Attributeerror: 'nonetype' Object Has No Attribute 'get'

Binding Two Comboboxes To One Function

I'm having trouble with binding to functions. Using Dijkstra's algorithm to find the shorte… Read more Binding Two Comboboxes To One Function

Kivy Moving A Widget

Unable to move a widget using Kivy I want to move a rectangle and have followed the code used in yo… Read more Kivy Moving A Widget

Is It Possible To Have A Standard Style For A Widget?

I want all of the buttons in my gui to have the same style. Right now I manually write in the attri… Read more Is It Possible To Have A Standard Style For A Widget?

Creating A C++ Qt Gui For A Python Logic

I was presented with a Python logic for which I need to create a GUI. I want to use Qt for that pur… Read more Creating A C++ Qt Gui For A Python Logic

"ironpython + .net" Vs "python + Pyqt". Which One Is Better For Windows App Development?

I'm new in using Python. I would like to develop Windows GUI Application using Python. After so… Read more "ironpython + .net" Vs "python + Pyqt". Which One Is Better For Windows App Development?

Can't Load Calendar With Corresponding Date

from tkinter import * from tkcalendar import Calendar def get_date(): label.configure(text=str… Read more Can't Load Calendar With Corresponding Date

Wxpython How To Change The Colour Of Gauge Progress Bar In Windows

I am designing a software in Python using WxPython as GUI in Windows.I want to change the default c… Read more Wxpython How To Change The Colour Of Gauge Progress Bar In Windows

Values Entered In The Dynamic Table (entry Widget Table) Is Not Appended In The List

Target of code is: create 8 row and 'n' column table [n =1,2,3 ...n] and get the inputs ent… Read more Values Entered In The Dynamic Table (entry Widget Table) Is Not Appended In The List

Checkbuttons And Buttons: Using Lambda

I am trying to make a number of checkboxes based on a list, however it looks as if I am screwing up… Read more Checkbuttons And Buttons: Using Lambda

Python Or Pythonw In Creating A Cross-platform Standalone Gui App

I am developing a simple standalone, graphical application in python. My development has been done … Read more Python Or Pythonw In Creating A Cross-platform Standalone Gui App

How Do I Make A Gui Open With The Correct Size With Wxpython?

I'm having trouble with the sizing of my window. When first opening the GUI, the initial size … Read more How Do I Make A Gui Open With The Correct Size With Wxpython?