menu or popumenu clickright in combobox choice?2019 Community Moderator ElectionBinding a WPF ComboBox to a custom listwxPython ListCtrl Column Ignores Specific FieldsComboBox: Adding Text and Value to an Item (no Binding Source)Adding an AuiToolbar causes “expected argument 3 type int”How to display a combobox based on a selection from another comboboxhow to reset choices of a combobox in real time using wxpython?wxpython - Erase background erases non-background componentspopulate filtered choices in combobox using wxpythonCombobox dropdown choice freezingReturn combo box choices as a parameters in wxpython

ESPP--any reason not to go all in?

Too soon for a plot twist?

Generating a list with duplicate entries

Why aren't there more Gauls like Obelix?

Is "cogitate" used appropriately in "I cogitate that success relies on hard work"?

I am the light that shines in the dark

Is there a math expression equivalent to the conditional ternary operator?

Why would /etc/passwd be used every time someone executes `ls -l` command?

What is the orbit and expected lifetime of Crew Dragon trunk?

Tabular environment - text vertically positions itself by bottom of tikz picture in adjacent cell

Should I apply for my boss's promotion?

What is 'Log Memory' in Query Store 2017

Having the player face themselves after the mid-game

Should I file my taxes? No income, unemployed, but paid 2k in student loan interest

Help! My Character is too much for her story!

Who has more? Ireland or Iceland?

Does the US political system, in principle, allow for a no-party system?

Has a sovereign Communist government ever run, and conceded loss, on a fair election?

What does *dead* mean in *What do you mean, dead?*?

What is the purpose of a disclaimer like "this is not legal advice"?

Why does a car's steering wheel get lighter with increasing speed

What is Tony Stark injecting into himself in Iron Man 3?

School performs periodic password audits. Is my password compromised?

Why do phishing e-mails use faked e-mail addresses instead of the real one?



menu or popumenu clickright in combobox choice?



2019 Community Moderator ElectionBinding a WPF ComboBox to a custom listwxPython ListCtrl Column Ignores Specific FieldsComboBox: Adding Text and Value to an Item (no Binding Source)Adding an AuiToolbar causes “expected argument 3 type int”How to display a combobox based on a selection from another comboboxhow to reset choices of a combobox in real time using wxpython?wxpython - Erase background erases non-background componentspopulate filtered choices in combobox using wxpythonCombobox dropdown choice freezingReturn combo box choices as a parameters in wxpython










1















i have first list ( visible, Infrarouge, simulation) in my combobox and i need to create list 2 ( VIS04,VIS05,VIS06,ir039,IR087,IR103,SIM1,SIM2,SIM2) like when i click right in visible i'will have like menu with : VIS04,VIS05,VIS06
and the same for infrarouge and simulation like the image description :



enter image description here
enter image description here



how can i have the menu like image description when i clik right with mouse in visible or other choice in combobox i have menu with list choice ? or all other suggestion possibl



i use wxpython in python3



this is part of my code :



class MainPanel(wx.Panel):

def __init__(self, parent):
super().__init__(parent)
wx.Frame.__init__(self, parent,size = (250,250))
self.splitter = wx.SplitterWindow(self, -1, size = (500,500))

#panelone
pan1 =wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
pan1.SetBackgroundColour("white")

#paneltwo
pan2 = wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
pan2.SetBackgroundColour("white")
#combobox

List1 = ['Infra', 'Vis','simulat']

combobox = wx.ComboBox(pan2, id=wx.ID_ANY, choices = List1, style=wx.CB_DROPDOWN,pos=(80,5))


some help or exemple please



i'm new in wxpython



thank u










share|improve this question




























    1















    i have first list ( visible, Infrarouge, simulation) in my combobox and i need to create list 2 ( VIS04,VIS05,VIS06,ir039,IR087,IR103,SIM1,SIM2,SIM2) like when i click right in visible i'will have like menu with : VIS04,VIS05,VIS06
    and the same for infrarouge and simulation like the image description :



    enter image description here
    enter image description here



    how can i have the menu like image description when i clik right with mouse in visible or other choice in combobox i have menu with list choice ? or all other suggestion possibl



    i use wxpython in python3



    this is part of my code :



    class MainPanel(wx.Panel):

    def __init__(self, parent):
    super().__init__(parent)
    wx.Frame.__init__(self, parent,size = (250,250))
    self.splitter = wx.SplitterWindow(self, -1, size = (500,500))

    #panelone
    pan1 =wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
    pan1.SetBackgroundColour("white")

    #paneltwo
    pan2 = wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
    pan2.SetBackgroundColour("white")
    #combobox

    List1 = ['Infra', 'Vis','simulat']

    combobox = wx.ComboBox(pan2, id=wx.ID_ANY, choices = List1, style=wx.CB_DROPDOWN,pos=(80,5))


    some help or exemple please



    i'm new in wxpython



    thank u










    share|improve this question


























      1












      1








      1








      i have first list ( visible, Infrarouge, simulation) in my combobox and i need to create list 2 ( VIS04,VIS05,VIS06,ir039,IR087,IR103,SIM1,SIM2,SIM2) like when i click right in visible i'will have like menu with : VIS04,VIS05,VIS06
      and the same for infrarouge and simulation like the image description :



      enter image description here
      enter image description here



      how can i have the menu like image description when i clik right with mouse in visible or other choice in combobox i have menu with list choice ? or all other suggestion possibl



      i use wxpython in python3



      this is part of my code :



      class MainPanel(wx.Panel):

      def __init__(self, parent):
      super().__init__(parent)
      wx.Frame.__init__(self, parent,size = (250,250))
      self.splitter = wx.SplitterWindow(self, -1, size = (500,500))

      #panelone
      pan1 =wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
      pan1.SetBackgroundColour("white")

      #paneltwo
      pan2 = wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
      pan2.SetBackgroundColour("white")
      #combobox

      List1 = ['Infra', 'Vis','simulat']

      combobox = wx.ComboBox(pan2, id=wx.ID_ANY, choices = List1, style=wx.CB_DROPDOWN,pos=(80,5))


      some help or exemple please



      i'm new in wxpython



      thank u










      share|improve this question
















      i have first list ( visible, Infrarouge, simulation) in my combobox and i need to create list 2 ( VIS04,VIS05,VIS06,ir039,IR087,IR103,SIM1,SIM2,SIM2) like when i click right in visible i'will have like menu with : VIS04,VIS05,VIS06
      and the same for infrarouge and simulation like the image description :



      enter image description here
      enter image description here



      how can i have the menu like image description when i clik right with mouse in visible or other choice in combobox i have menu with list choice ? or all other suggestion possibl



      i use wxpython in python3



      this is part of my code :



      class MainPanel(wx.Panel):

      def __init__(self, parent):
      super().__init__(parent)
      wx.Frame.__init__(self, parent,size = (250,250))
      self.splitter = wx.SplitterWindow(self, -1, size = (500,500))

      #panelone
      pan1 =wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
      pan1.SetBackgroundColour("white")

      #paneltwo
      pan2 = wx.Window(self.splitter, style=wx.DEFAULT_FRAME_STYLE)
      pan2.SetBackgroundColour("white")
      #combobox

      List1 = ['Infra', 'Vis','simulat']

      combobox = wx.ComboBox(pan2, id=wx.ID_ANY, choices = List1, style=wx.CB_DROPDOWN,pos=(80,5))


      some help or exemple please



      i'm new in wxpython



      thank u







      python-3.x combobox menu wxpython






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 12 hours ago







      Tiera Eyek

















      asked 2 days ago









      Tiera EyekTiera Eyek

      93




      93






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Is this the sort of thing you are trying to achieve?

          The contents of combobox2 is dependent on the choice made in combobox1.
          wx.ComboBox.GetSelection() returns the index of the choice made, thus if we create a list of lists of the possible choices for combobox2, we can simply load up the correct set based on the choice from combobox1.



          import wx
          class myCombo(wx.Frame):
          def __init__(self, *args, **kwds):
          wx.Frame.__init__(self, *args, **kwds)
          list1 = ["visible", "Infrarouge", "simulation"]
          self.list_tests = [['VIS04','VIS05','VIS06','VIS08'],['IR04','IR05','IR06','IR08'],['SIM04','SIM05','SIM06','SIM08']]
          self.list2 = self.list_tests[0]
          self.panel = wx.Panel(self)
          self.Cbox1 = wx.ComboBox(self.panel, wx.ID_ANY, choices = list1, style=wx.CB_READONLY)
          self.Cbox1.Bind(wx.EVT_COMBOBOX, self.OnCombobox1)
          self.Cbox2 = wx.ComboBox(self.panel, wx.ID_ANY, choices = self.list2, style=wx.CB_DROPDOWN)
          self.Cbox2.Bind(wx.EVT_COMBOBOX, self.OnCombobox2)
          self.Cbox1.SetSelection(0)
          sizer = wx.BoxSizer(wx.VERTICAL)
          sizer.Add(self.Cbox1)
          sizer.Add(self.Cbox2)
          self.panel.SetSizer(sizer)
          self.Show()

          def OnCombobox1(self,event):
          #get the index (zero based) of the selection
          option = self.Cbox1.GetSelection()
          #re-set list2 in case we depend on it somewhere else
          self.list2 = self.list_tests[option]
          #load the new options into combobox2
          self.Cbox2.SetItems(self.list2)
          #set value to clear any previous value
          self.Cbox2.SetValue("")

          def OnCombobox2(self,event):
          test = self.Cbox2.GetValue()
          print ("You chose test",test)

          if __name__ == '__main__':
          app = wx.App()
          myCombo(None)
          app.MainLoop()





          share|improve this answer























          • thank u but not that what i need i need list2 in list 1 like menu i posted a picture what i need ...

            – Tiera Eyek
            yesterday











          • Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item

            – Rolf of Saxony
            yesterday











          • @ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all

            – Tiera Eyek
            yesterday











          • @TieraEyek to be clear, do you mean a popup menu?

            – Rolf of Saxony
            16 hours ago











          • @ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik

            – Tiera Eyek
            15 hours ago










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55025359%2fmenu-or-popumenu-clickright-in-combobox-choice%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          Is this the sort of thing you are trying to achieve?

          The contents of combobox2 is dependent on the choice made in combobox1.
          wx.ComboBox.GetSelection() returns the index of the choice made, thus if we create a list of lists of the possible choices for combobox2, we can simply load up the correct set based on the choice from combobox1.



          import wx
          class myCombo(wx.Frame):
          def __init__(self, *args, **kwds):
          wx.Frame.__init__(self, *args, **kwds)
          list1 = ["visible", "Infrarouge", "simulation"]
          self.list_tests = [['VIS04','VIS05','VIS06','VIS08'],['IR04','IR05','IR06','IR08'],['SIM04','SIM05','SIM06','SIM08']]
          self.list2 = self.list_tests[0]
          self.panel = wx.Panel(self)
          self.Cbox1 = wx.ComboBox(self.panel, wx.ID_ANY, choices = list1, style=wx.CB_READONLY)
          self.Cbox1.Bind(wx.EVT_COMBOBOX, self.OnCombobox1)
          self.Cbox2 = wx.ComboBox(self.panel, wx.ID_ANY, choices = self.list2, style=wx.CB_DROPDOWN)
          self.Cbox2.Bind(wx.EVT_COMBOBOX, self.OnCombobox2)
          self.Cbox1.SetSelection(0)
          sizer = wx.BoxSizer(wx.VERTICAL)
          sizer.Add(self.Cbox1)
          sizer.Add(self.Cbox2)
          self.panel.SetSizer(sizer)
          self.Show()

          def OnCombobox1(self,event):
          #get the index (zero based) of the selection
          option = self.Cbox1.GetSelection()
          #re-set list2 in case we depend on it somewhere else
          self.list2 = self.list_tests[option]
          #load the new options into combobox2
          self.Cbox2.SetItems(self.list2)
          #set value to clear any previous value
          self.Cbox2.SetValue("")

          def OnCombobox2(self,event):
          test = self.Cbox2.GetValue()
          print ("You chose test",test)

          if __name__ == '__main__':
          app = wx.App()
          myCombo(None)
          app.MainLoop()





          share|improve this answer























          • thank u but not that what i need i need list2 in list 1 like menu i posted a picture what i need ...

            – Tiera Eyek
            yesterday











          • Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item

            – Rolf of Saxony
            yesterday











          • @ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all

            – Tiera Eyek
            yesterday











          • @TieraEyek to be clear, do you mean a popup menu?

            – Rolf of Saxony
            16 hours ago











          • @ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik

            – Tiera Eyek
            15 hours ago















          0














          Is this the sort of thing you are trying to achieve?

          The contents of combobox2 is dependent on the choice made in combobox1.
          wx.ComboBox.GetSelection() returns the index of the choice made, thus if we create a list of lists of the possible choices for combobox2, we can simply load up the correct set based on the choice from combobox1.



          import wx
          class myCombo(wx.Frame):
          def __init__(self, *args, **kwds):
          wx.Frame.__init__(self, *args, **kwds)
          list1 = ["visible", "Infrarouge", "simulation"]
          self.list_tests = [['VIS04','VIS05','VIS06','VIS08'],['IR04','IR05','IR06','IR08'],['SIM04','SIM05','SIM06','SIM08']]
          self.list2 = self.list_tests[0]
          self.panel = wx.Panel(self)
          self.Cbox1 = wx.ComboBox(self.panel, wx.ID_ANY, choices = list1, style=wx.CB_READONLY)
          self.Cbox1.Bind(wx.EVT_COMBOBOX, self.OnCombobox1)
          self.Cbox2 = wx.ComboBox(self.panel, wx.ID_ANY, choices = self.list2, style=wx.CB_DROPDOWN)
          self.Cbox2.Bind(wx.EVT_COMBOBOX, self.OnCombobox2)
          self.Cbox1.SetSelection(0)
          sizer = wx.BoxSizer(wx.VERTICAL)
          sizer.Add(self.Cbox1)
          sizer.Add(self.Cbox2)
          self.panel.SetSizer(sizer)
          self.Show()

          def OnCombobox1(self,event):
          #get the index (zero based) of the selection
          option = self.Cbox1.GetSelection()
          #re-set list2 in case we depend on it somewhere else
          self.list2 = self.list_tests[option]
          #load the new options into combobox2
          self.Cbox2.SetItems(self.list2)
          #set value to clear any previous value
          self.Cbox2.SetValue("")

          def OnCombobox2(self,event):
          test = self.Cbox2.GetValue()
          print ("You chose test",test)

          if __name__ == '__main__':
          app = wx.App()
          myCombo(None)
          app.MainLoop()





          share|improve this answer























          • thank u but not that what i need i need list2 in list 1 like menu i posted a picture what i need ...

            – Tiera Eyek
            yesterday











          • Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item

            – Rolf of Saxony
            yesterday











          • @ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all

            – Tiera Eyek
            yesterday











          • @TieraEyek to be clear, do you mean a popup menu?

            – Rolf of Saxony
            16 hours ago











          • @ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik

            – Tiera Eyek
            15 hours ago













          0












          0








          0







          Is this the sort of thing you are trying to achieve?

          The contents of combobox2 is dependent on the choice made in combobox1.
          wx.ComboBox.GetSelection() returns the index of the choice made, thus if we create a list of lists of the possible choices for combobox2, we can simply load up the correct set based on the choice from combobox1.



          import wx
          class myCombo(wx.Frame):
          def __init__(self, *args, **kwds):
          wx.Frame.__init__(self, *args, **kwds)
          list1 = ["visible", "Infrarouge", "simulation"]
          self.list_tests = [['VIS04','VIS05','VIS06','VIS08'],['IR04','IR05','IR06','IR08'],['SIM04','SIM05','SIM06','SIM08']]
          self.list2 = self.list_tests[0]
          self.panel = wx.Panel(self)
          self.Cbox1 = wx.ComboBox(self.panel, wx.ID_ANY, choices = list1, style=wx.CB_READONLY)
          self.Cbox1.Bind(wx.EVT_COMBOBOX, self.OnCombobox1)
          self.Cbox2 = wx.ComboBox(self.panel, wx.ID_ANY, choices = self.list2, style=wx.CB_DROPDOWN)
          self.Cbox2.Bind(wx.EVT_COMBOBOX, self.OnCombobox2)
          self.Cbox1.SetSelection(0)
          sizer = wx.BoxSizer(wx.VERTICAL)
          sizer.Add(self.Cbox1)
          sizer.Add(self.Cbox2)
          self.panel.SetSizer(sizer)
          self.Show()

          def OnCombobox1(self,event):
          #get the index (zero based) of the selection
          option = self.Cbox1.GetSelection()
          #re-set list2 in case we depend on it somewhere else
          self.list2 = self.list_tests[option]
          #load the new options into combobox2
          self.Cbox2.SetItems(self.list2)
          #set value to clear any previous value
          self.Cbox2.SetValue("")

          def OnCombobox2(self,event):
          test = self.Cbox2.GetValue()
          print ("You chose test",test)

          if __name__ == '__main__':
          app = wx.App()
          myCombo(None)
          app.MainLoop()





          share|improve this answer













          Is this the sort of thing you are trying to achieve?

          The contents of combobox2 is dependent on the choice made in combobox1.
          wx.ComboBox.GetSelection() returns the index of the choice made, thus if we create a list of lists of the possible choices for combobox2, we can simply load up the correct set based on the choice from combobox1.



          import wx
          class myCombo(wx.Frame):
          def __init__(self, *args, **kwds):
          wx.Frame.__init__(self, *args, **kwds)
          list1 = ["visible", "Infrarouge", "simulation"]
          self.list_tests = [['VIS04','VIS05','VIS06','VIS08'],['IR04','IR05','IR06','IR08'],['SIM04','SIM05','SIM06','SIM08']]
          self.list2 = self.list_tests[0]
          self.panel = wx.Panel(self)
          self.Cbox1 = wx.ComboBox(self.panel, wx.ID_ANY, choices = list1, style=wx.CB_READONLY)
          self.Cbox1.Bind(wx.EVT_COMBOBOX, self.OnCombobox1)
          self.Cbox2 = wx.ComboBox(self.panel, wx.ID_ANY, choices = self.list2, style=wx.CB_DROPDOWN)
          self.Cbox2.Bind(wx.EVT_COMBOBOX, self.OnCombobox2)
          self.Cbox1.SetSelection(0)
          sizer = wx.BoxSizer(wx.VERTICAL)
          sizer.Add(self.Cbox1)
          sizer.Add(self.Cbox2)
          self.panel.SetSizer(sizer)
          self.Show()

          def OnCombobox1(self,event):
          #get the index (zero based) of the selection
          option = self.Cbox1.GetSelection()
          #re-set list2 in case we depend on it somewhere else
          self.list2 = self.list_tests[option]
          #load the new options into combobox2
          self.Cbox2.SetItems(self.list2)
          #set value to clear any previous value
          self.Cbox2.SetValue("")

          def OnCombobox2(self,event):
          test = self.Cbox2.GetValue()
          print ("You chose test",test)

          if __name__ == '__main__':
          app = wx.App()
          myCombo(None)
          app.MainLoop()






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 2 days ago









          Rolf of SaxonyRolf of Saxony

          9,14521737




          9,14521737












          • thank u but not that what i need i need list2 in list 1 like menu i posted a picture what i need ...

            – Tiera Eyek
            yesterday











          • Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item

            – Rolf of Saxony
            yesterday











          • @ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all

            – Tiera Eyek
            yesterday











          • @TieraEyek to be clear, do you mean a popup menu?

            – Rolf of Saxony
            16 hours ago











          • @ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik

            – Tiera Eyek
            15 hours ago

















          • thank u but not that what i need i need list2 in list 1 like menu i posted a picture what i need ...

            – Tiera Eyek
            yesterday











          • Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item

            – Rolf of Saxony
            yesterday











          • @ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all

            – Tiera Eyek
            yesterday











          • @TieraEyek to be clear, do you mean a popup menu?

            – Rolf of Saxony
            16 hours ago











          • @ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik

            – Tiera Eyek
            15 hours ago
















          thank u but not that what i need i need list2 in list 1 like menu i posted a picture what i need ...

          – Tiera Eyek
          yesterday





          thank u but not that what i need i need list2 in list 1 like menu i posted a picture what i need ...

          – Tiera Eyek
          yesterday













          Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item

          – Rolf of Saxony
          yesterday





          Edit your question to reflect exactly what it is that you do want to do. As it is, you specifically said combobox and you coded with wx.ComboBox and yet you link to a picture of a menu item

          – Rolf of Saxony
          yesterday













          @ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all

          – Tiera Eyek
          yesterday





          @ Rolf of Saxony yes i'm sorry but what i need is context menu click right like when i click right in Visible i can have a contextmenu have all list of Visible = vis01,vid02,vis03, like the picture that all

          – Tiera Eyek
          yesterday













          @TieraEyek to be clear, do you mean a popup menu?

          – Rolf of Saxony
          16 hours ago





          @TieraEyek to be clear, do you mean a popup menu?

          – Rolf of Saxony
          16 hours ago













          @ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik

          – Tiera Eyek
          15 hours ago





          @ Rolf of Saxony when i click in Visible in my combobox is apprait menu with (VIS01,VIS04,VIS05) and same for INfrarouge and Simulation yes i thing is popup menu or popup menu rightclik

          – Tiera Eyek
          15 hours ago



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55025359%2fmenu-or-popumenu-clickright-in-combobox-choice%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

          2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived

          Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme