Modern Graphical User Interfaces in Python

Modern Graphical User Interfaces in Python

NeuralNine

1 год назад

1,434,526 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Amine Poplocker
Amine Poplocker - 19.09.2023 15:18

How do you know all that? You understand the concept? or you have a pre ready sheet?

Ответить
KOLIAT
KOLIAT - 16.09.2023 22:34

So called 'MODERN GUI' in python always seems to come from the last century...

Ответить
Trương Cẩm Nguyên_張錦源_
Trương Cẩm Nguyên_張錦源_ - 14.09.2023 16:54

can you share the code you collected from github

Ответить
Iamfoxbrown
Iamfoxbrown - 14.09.2023 13:49

Topzeira o que vc fez. It will be useful for me to use in my projects. Thanks!

Ответить
Nesrya
Nesrya - 14.09.2023 12:17

It is giving me the error "Customtkinter has no attribute 'set_default_color_theme' " how do i fix this?

Ответить
Tophat
Tophat - 10.09.2023 00:45

Who on earth would code a module where you pass in int size values as a string? No, sorry. That's just silly. I suppose on one level it's not a big deal but it's just bad coding plain and simple.

No, just no. How on earth am I supposed to trust the rest of the module? I'll pass.

Ответить
nath
nath - 08.09.2023 18:15

Thanks that is such a boost to my tkinter app I am building. Now it doesn't look like Windows 2000 anymore ❤

Ответить
Afshin Loghmani M Toussi
Afshin Loghmani M Toussi - 07.09.2023 16:52

Thanks for the video.
It would have been better, if you had shown the results of each addition instead of showing it when you are done writing all the codes

Ответить
Fabrizio Fadda
Fabrizio Fadda - 05.09.2023 14:48

i set a background image, a color gradient, but when i tried to set the frames transparent (to reveal the gradient in the background) it didn't work, just showed the system color or the dark or the light,. How can i solve?

Ответить
Illia Tulupov
Illia Tulupov - 04.09.2023 23:01

oh wow, if you call that modern...

Ответить
J Mans
J Mans - 02.09.2023 03:05

17 line it is not font_text it is font=

Ответить
gorbuha
gorbuha - 31.08.2023 05:27

What did i just watch???

Ответить
S. Joseph
S. Joseph - 30.08.2023 01:38

It didn't work for me fam

Ответить
Keyrih
Keyrih - 29.08.2023 22:03

The text_font paramter for the label method doesn't work for me. Is something else needed ?

Ответить
Scott_itall
Scott_itall - 29.08.2023 06:59

Problem is no good DataGrid.

Ответить
Lorenzo lorenzo
Lorenzo lorenzo - 27.08.2023 15:29

Hello sir, can you help me with one question?
I have a program with a input screen. After providing the data on the screen I run the program.
While the program is running, the run screen freezes until the program finishes with the job.
How can I prevent the screen from freezing while the program is running?

Ответить
Vincent Tuijl van
Vincent Tuijl van - 15.08.2023 20:50

Gui looks modern,,, the code does not🤓

Ответить
game 47
game 47 - 13.08.2023 13:46

how to create ai tools

Ответить
Toothytuna12
Toothytuna12 - 10.08.2023 22:10

PLSSS reply 2 ths, but wat did u use 2 record ths?

Ответить
TheDark Side
TheDark Side - 09.08.2023 21:36

Python how to make Round Modern Button in less than 5 minutes 2023

Ответить
Frank Dorrian
Frank Dorrian - 09.08.2023 12:13

This really helped me out, thank you

Ответить
Piyush Gupta
Piyush Gupta - 07.08.2023 20:26

What about its comparison with ttkbootstrap ? Which one would you suggest ? No doubt this looks good, but looking for a suggestion.

Ответить
mighty duck
mighty duck - 07.08.2023 09:22

hmm didnt work for me

Ответить
Floripa Bengals
Floripa Bengals - 06.08.2023 07:03

Does. You import autocomplete? What do you do for that?

Ответить
FuzzyBear
FuzzyBear - 30.07.2023 18:11

So what are the pros and cons of doing it in python instead of more specialized ways, like C# and all the stuff with it. Or with flutter, etc..

Ответить
B A K I
B A K I - 29.07.2023 16:12

Dude. F*ck you are good. Because of high quality videos like this one. A lot of people are saving a lot of time. Sh%t that can't be priced.

Ответить
RSZWAIN FACTZ
RSZWAIN FACTZ - 28.07.2023 19:01

Which software you are using sir?? Please reply 😊

Ответить
Afif Farakhan
Afif Farakhan - 28.07.2023 00:35

Man, what I've been looking for years. You're killing it bro

Ответить
Carlo Di Cicco
Carlo Di Cicco - 26.07.2023 20:13

This code doesn't work on my ide with the latest version of customtkinter, there are some syntax errors, is this possible? someone has the same problem?

Ответить
Erick Arias
Erick Arias - 25.07.2023 16:59

Good day, how do you create or use the TreeView in Customtkinter? Is there a replacement for TreeView?

Ответить
Cheddarswiss21
Cheddarswiss21 - 24.07.2023 17:59

how would i go about adding my own graphics as well ? ex: logo?

Ответить
Lexiland
Lexiland - 21.07.2023 06:32

excellent

Ответить
Hilaal Ainte
Hilaal Ainte - 20.07.2023 23:03

import customtkinter
customtkinter.set_appearance_mode("dark")
customtkinter.ser_default_color_theme("dark-blue")

root = customtkinter.CTk()
root.geomatry("500x350")

def login():
print("Test")

frame = customtkinter.CTkFrame(master=root)
frame.pack(pady=20, padx=60, fill="both", expand=True)

label = customtkinter.CTkLabel(master=frame, text="Login Ststem", text_font=("Roboto", 24)
label.pack(pady=12, padx=10)

entry1 = customtkinter.CTkEntry(master=frame, placeholder_text="Username")
entry1.pack(pady=12, padx=10)

entry2 = customtkinter.CTkEntry(master=frame, placeholder_text="password", show="*")
entry2.pack(pady=12, padx=10)

button = customtkinter.CTkButton(master=frame, text="Logic", command=login)
button.pack(pady=12, padx=10)

checkbox = customtkinter.CTkcheckBox(master=frame, text="Remember Me")
checkbox.pack(pady=12, padx=10)
root.mainloop()

Ответить
Hilaal Ainte
Hilaal Ainte - 20.07.2023 22:43

Hi

Ответить
DasJev
DasJev - 16.07.2023 14:30

Drink a shot everytime he says "Tkinter"

Ответить
deblobvis
deblobvis - 15.07.2023 11:30

This will help me making my graphic calculator

Ответить
Eric 222
Eric 222 - 13.07.2023 11:57

wow you are quick

Ответить
minsa pint
minsa pint - 11.07.2023 19:46

Very impressive video.

Ответить
Guillermo T.
Guillermo T. - 11.07.2023 15:08

not code for the other interface.. shit video
Github dont have the codes.. maybe was erased.. scam for selling books

Ответить
Stan Suen
Stan Suen - 10.07.2023 23:20

Great Video! Wonder if we can embed Javascript (like interactive stock chart) into the UI?

Ответить
Guy Merlin Dyangnou
Guy Merlin Dyangnou - 09.07.2023 18:12

Amazing as usual

Ответить
VersyStudio
VersyStudio - 06.07.2023 13:25

Since customtkinter update, if you have an error "ValueError: ['text_font'] are not supported arguments", change argument 'text_font' to 'font', like this: label = customtkinter.CTkLabel(master=frame1, text="Trade Control", font=("Roboto", 24))

Ответить
Foo Fenrir
Foo Fenrir - 04.07.2023 21:36

Very interessant. Do you know how to make a frameless windows without titlebar but draggabvle?

Ответить
Tayyab
Tayyab - 18.06.2023 21:47

amazing! we need more videos on python GUI

Ответить
Still Learning
Still Learning - 11.06.2023 18:11

That was amazing. Saving for later.

Ответить
 Selwy
Selwy - 11.06.2023 16:14

Good video, I love it , I'm familiar with QT,

Ответить
man frombritain
man frombritain - 04.06.2023 16:34

great little intro, but root.geometry does not seem to do anything as far as i can tell?

Ответить