开发者

Select and copy text from dialog in wxPython

开发者 https://www.devze.com 2023-01-06 06:29 出处:网络
I have a wxPython app, and in this app, I can select and copy text from various frames, but I can\'t do so from dialogs.Is there a way to do this?

I have a wxPython app, and in this app, I can select and copy text from various frames, but I can't do so from dialogs. Is there a way to do this?

I understand I could probably do this by putting some kind of Text开发者_开发问答Ctrl in the dialog, but I'd like to be able to do this from a standard looking dialog.

EDIT:

Sorry, I should have been more specific. I can't select text from a wx.MessageBox under Windows Vista or Mac (don't have access to Linux to try that). Here is one example of the call to create the message box:

wx.MessageBox(str(msg), "Could not load ballots", wx.OK|wx.ICON_ERROR)

I am unable to select the text of the message box.


If you make a custom MessageBox like so, it will appear to be static text until you click on the text:

class MessageBox(wx.Dialog):
    def __init__(self, parent, title):
        wx.Dialog.__init__(self, parent, title=title)
        text = wx.TextCtrl(self, style=wx.TE_READONLY|wx.BORDER_NONE)
        text.SetValue("Hi hi hi")
        text.SetBackgroundColour(wx.SystemSettings.GetColour(4))
        self.ShowModal()
        self.Destroy()

I've only tested this on windows, you might have to adjust the color for your OS.

0

精彩评论

暂无评论...
验证码 换一张
取 消