desktop

  • Advanced Desktop Media Player built using Python, PySide, PyQt, and Qt Designer – QT Media Player

    Advanced Desktop Media Player built using Python, PySide, PyQt, and Qt Designer – QT Media Player

    QT Media Player is an advanced desktop media player developed using Python, PySide, PyQt, and Qt Designer. This tutorial will…

  • Monitor All System Information Using a Desktop App with a Modern GUI UI in Python (PYQT, PYSIDE2/6, PSUTIL)

    Monitor All System Information Using a Desktop App with a Modern GUI UI in Python (PYQT, PYSIDE2/6, PSUTIL)

    In this tutorial, we will create a desktop app using Python, PYQT, PySide2/6, and PSUtil to monitor all system information….

  • Creating a Modern Flat GUI for a Python Desktop App with Splash Screen using QT Designer, Pyqt, and Pyside

    Creating a Modern Flat GUI for a Python Desktop App with Splash Screen using QT Designer, Pyqt, and Pyside

    In this tutorial, we will be creating a Python desktop application with a splash screen using QT Designer, PyQt or…

  • Creating a Simple Menu in PyQt | Python GUI Tutorial #2

    Creating a Simple Menu in PyQt | Python GUI Tutorial #2

    In this tutorial, we will continue our exploration of creating a simple menu in PyQt. This is the second part…

  • PySimpleGUI Tutorial #07: Creating a Window with Themes in Python

    PySimpleGUI Tutorial #07: Creating a Window with Themes in Python

    In this tutorial, we will be exploring PySimpleGUI’s window themes feature. PySimpleGUI allows you to customize the look and feel…

  • Creating Signals in PyQT (BackEnd) | Tutorial for PyQT Desktop App

    Creating Signals in PyQT (BackEnd) | Tutorial for PyQT Desktop App

    In this tutorial, we will learn how to create signals in PyQT in the backend of a desktop application. Signals…

  • Course on Developing Python Desktop Applications using PyQt

    Course on Developing Python Desktop Applications using PyQt

    Welcome to this tutorial on Python desktop application development with PyQt! In this course, we will learn how to create…

  • Using QT Theme Engine to Customize Python Desktop GUI | PyQt, PySide, QT Designer, and Qt Sass

    Using QT Theme Engine to Customize Python Desktop GUI | PyQt, PySide, QT Designer, and Qt Sass

    QT Theme Engine for Python desktop GUI applications is a powerful tool that allows users to customize the appearance of…

  • Monitor All System Information with Python-based Desktop App using PYQT or PYSIDE2/6 and PSUTIL – Featuring Modern GUI/ UI

    Monitor All System Information with Python-based Desktop App using PYQT or PYSIDE2/6 and PSUTIL – Featuring Modern GUI/ UI

    In this tutorial, we will walk through the process of designing and creating a desktop application to monitor all system…

  • Let’s Master Tkinter, which Can Create Desktop Applications in Python, by Explaining 10 Types of Widgets! Tkinter Second Edition – Introduction to Programming for Beginners

    Let’s Master Tkinter, which Can Create Desktop Applications in Python, by Explaining 10 Types of Widgets! Tkinter Second Edition – Introduction to Programming for Beginners

    TkinterはPythonの標準GUIツールキットであり、Pythonを使用してデスクトップアプリケーションを作成するための非常に便利なツールです。このチュートリアルでは、Tkinterを使ったデスクトップアプリケーションの作成に必要な10種類のウィジェットを詳しく説明します。このチュートリアルは初心者向けのプログラミング入門となっていますので、最初から順番に理解していくことができます。 1. ラベル(Label):Tkinterでは、画面上にテキストを表示するためにラベルというウィジェットを使用します。ラベルは一般的に静的なテキストを表示するために使用されます。 2. ボタン(Button):ボタンはユーザーがクリックすることで何らかのアクションを引き起こすために使用されます。ボタンのクリック時に関数を呼び出すことで、アプリケーションの機能を実現することができます。 3. エントリ(Entry):エントリはユーザーがテキストを入力するためのボックスです。ユーザーが情報を入力する必要がある場合に使用します。 4. チェックボタン(Checkbutton):チェックボタンはオン/オフの状態を選択できるようにするためのウィジェットです。複数の選択肢を提供する場合に使用します。 5. ラジオボタン(Radiobutton):ラジオボタンは複数の選択肢から1つだけを選択できるようにするウィジェットです。複数の選択肢から1つだけを選択する場合に使用します。 6. メニュー(Menu):メニューはアプリケーションの機能をラベル付きの選択肢として提供するためのウィジェットです。メニューバーに表示され、ユーザーが選択肢をクリックすることでアクションを実行します。 7. スクロールバー(Scrollbar):スクロールバーは長いテキストや画像などのコンテンツを表示する際に使用されます。表示される領域よりも大きなコンテンツをスクロールして閲覧するために使用します。 8. リストボックス(Listbox):リストボックスはリスト形式のデータを表示するためのウィジェットです。ユーザーがリストから選択を行う場合に使用されます。 9. テキストボックス(Text):テキストボックスは複数行のテキストエリアを提供するためのウィジェットです。複数行のテキストを入力・表示する場合に使用されます。 10….