Я попробовал PyQtGraph, который, как говорят, работает на чистом Python, но это не помогло тоже не работает. (Похоже, я сделал что-то не так):
Код: Выделить всё
import pyqtgraph as pqg
pqg.setWindowFlag(Qt.FramelessWindowHint)
#I got this error: "No module named pyqtgraph"
Код: Выделить всё
import pygame
pygame.display.set_mode((640, 480), pygame.NOFRAME) # it opened really small window WITH the title bar, and no matter how I change the width and height it is still that small
Код: Выделить всё
from ctypes import windll
h = windll.user32.FindWindowA(b'Shell_TrayWnd', None)
windll.user32.ShowWindow(h, 0)
# and in case you'll run this code, this line enables the title bar: windll.user32.ShowWindow(h, 9)
Подробнее здесь: https://stackoverflow.com/questions/790 ... to-hide-th