Using Text Widgets - Tkinter - Python Programming

preview_player
Показать описание
This video shows how to use Entry Widget. The Entry widget is used to accept single-line text strings from a user. If we want to display multiple lines of text that can be edited, then we should use the Text widget. Entry widget is good for single line of text. Text widget is great for multi-line blocks of text.
Рекомендации по теме
Комментарии
Автор

Thank you very much!!! If I want to select all the text in the window using Ctrl-A and I want to copy it, how would one do that?
And also, I can copy the content to the clipboard with Ctrl-C, but is there a way to copy the contents to the clipboard using a button?

daniellouw