-
can this library be used in the wxPython gui in any way? I have a program in wxPython which has a dark interface if you don't count the white frame of the Windows 10/11 window. It doesn't fit in the interface of the program at all and spoils the whole picture. Please, who can help, let me know |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 10 replies
-
@deeffest You can try it on the main window of any python UI library. import wx
import pywinstyles
app = wx.App()
pywinstyles.apply_style(app, 'dark')
... Let me know the results :) |
Beta Was this translation helpful? Give feedback.
-
@deeffest Ok, I have added the wx-python compatibility. Update the packge first import wx
import pywinstyles
app = wx.App()
frame = wx.Frame(parent=None, title='wx-python')
pywinstyles.apply_style(frame, "dark")
frame.Show()
app.MainLoop() |
Beta Was this translation helpful? Give feedback.
@deeffest Ok, I have added the wx-python compatibility. Update the packge first
pip install pywinstyles --upgrade