2021年8月6日金曜日

PySimpleGUIでウインドウのタイトルバーを非表示にする

PySimpleGUIでウインドウのタイトルバーを非表示にするには、no_titlebarパラメータにTrueを指定します。

サンプル実行手順

以下のファイルを保存して、実行します。
window_no_titlebar.py
import PySimpleGUI as sg

sg.theme('SystemDefault')
layout = [  [sg.Text('Windowタイトルバー無し')]]

window = sg.Window('Windowタイトルバー無し', layout=layout, no_titlebar=True)
# イベントループ
while True:
    event, values = window.read()
    if event == sg.WIN_CLOSED:
        break

window.close()

・実行コマンド
python window_no_titlebar.py

〇実行結果

関連情報

PySimpleGUIでウインドウのサイズを指定する

PySimpleGUIでウインドウの位置を指定する

PySimpleGUIでウインドウの背景色を設定する

PySimpleGUIでウインドウの閉じるボタンを無効化する

PySimpleGUIでウインドウの大きさを変えることが出来るようにする

PySimpleGUIでウインドウのアイコンを指定する

・PySimpleGUIに関する他の記事はこちらを参照してください。

0 件のコメント:

コメントを投稿