wx.textCtrl wx.TE_MULTILINE destroy text.hint python

50 Views Asked by At

I have strange behavior with text.ctrl. I would like to have textCtrl to set some text. This is connected to database. When database is empty on this textCtrl I would like to show hint " Place text bla,la ..". But when exists some data I would like to show current data on textCtrl without hint. Here is problem. When data exists current text goes to textCtrl hint. Every works fine with single line text. This behavior appears when I switch textCtrl to Multiline mode.

**WORKS**
self.m_textCtrl5 = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.Size( 600,50 ),0 )
self.m_textCtrl5.SetFont( wx.Font( 12, wx.FONTFAMILY_SWISS, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_BOLD, False, "Arial" ) )
self.m_textCtrl5.SetHint("Place text bla,bla")
if empty_record==1:
   self.m_textCtrl5.SetLabel(data)

**NOT WORKING**
# self.m_textCtrl5 = wx.TextCtrl( self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.Size( 600,50 ), wx.TE_MULTILINE)
self.m_textCtrl5.SetFont( wx.Font( 12, wx.FONTFAMILY_SWISS, wx.FONTSTYLE_NORMAL, wx.FONTWEIGHT_BOLD, False, "Arial" ) )
self.m_textCtrl5.SetHint("Place text bla,bla")
if empty_record==1:
  self.m_textCtrl5.SetLabel(data)

I would like to have multiline textCtrl with hint

1

There are 1 best solutions below

2
On

Hints are only supported for multine text controls in some platforms, as noted in the documentation

A solution is to replace this

self.m_textCtrl5.SetHint("Place text bla,bla")
if empty_record==1:
  self.m_textCtrl5.SetLabel(data)

with this

if empty_record==1:
  self.m_textCtrl5.SetLabel(data)
else:
  self.m_textCtrl5.WriteText("Place text bla,bla")