Most voted "wxwidgets" questions
wxWidgets is a Toolkit for creating cross-platform graphical user interfaces. The library is implemented in C++, but other implementations are available for several of the most common programming languages, among them: Python, Smalltalk, Perl and Java. If the question isn’t about wxWidgets, don’t use this tag, even if you are using wxWidgets in your project.
Learn more…9 questions
Sort by count of
-
3
votes1
answer170
viewsHow to change the background image of a Wxdialog?
How do I use an image like background of a wxDialog? Using the WxStaticBitmap, components do not appear right. I am using version 2.8.12 of Wxwidgets. Example of expected result:…
-
3
votes1
answer170
viewsHow to add an image in the menu?
I need to add an image to the menu of my program in Python. I am using the wxpython library. The menu is like this: The code: #!/usr/bin/env python # -*- coding: utf-8 -*- import wx class…
-
3
votes1
answer147
viewsHow to change the position of the bitmap button?
I inserted a button with an image in my menu. But I can’t change its position. How do I change its position? because I need to insert 2 more buttons and organize them.I’m using the python wx…
-
2
votes1
answer39
viewsGet position of wxTextCtrl
How do I get the position (x and y) of a WxTextCtrl? I didn’t find anything in the documentation.
-
1
votes0
answers62
viewsHow to set a background image in a Wxframe?
With the library wxLua, how do I use an image as a background WxFrame? Using the wxBitmap, the components on the image are not shown correctly.…
-
1
votes0
answers28
viewsThe menu does not appear in the wxWidgets frame
I have a small application wxWidigtes in C++, where I have a frame that has a status bar and menu bar. However, the Manu bar is not displayed in the frame. What to do? #include "MenuMain.h" #include…
-
1
votes1
answer42
viewsWxpython: Getfocuseditem() returning item even with nothing focused
I’m writing an interface with wxPython, but I’ve come across a problem so far with no solution, even looking at the documentation. I have a Listctrl with several items that should be sent to the…
-
0
votes1
answer130
viewsError with wxWidgets wxmsw30u_gcc_custom.dll
http://prnt.sc/8lfnv5 I’m starting with C/C++ and got the code::Blocks as compiler, I want to use wxWidgets, compile an application, a hello world, when opening by code::Blocks it works normal, when…
-
0
votes1
answer73
viewsMakefile wxWidgets
I’m trying to use wxWidgets to do a college project and I ended up trying to use Makefile out of curiosity, below the Makefile I’m using as an example for the project. Makefile CPP_FILES :=…