Search found 4 matches

by burakkoray
Sun Nov 07, 2021 5:38 am
Forum: Component Writing
Topic: Listview with Multiple Columns
Replies: 5
Views: 16870

Re: Listview with Multiple Columns

Creating the listbox with 0, 0 position and size, and not adding it to the panel's main sizer did the trick. I can now reach it using the keyboard but it's not visible anywhere on the screen, which should allow me to draw something else in place of it. I imagine this may break on other platforms, is...
by burakkoray
Fri Nov 05, 2021 4:57 pm
Forum: Component Writing
Topic: Listview with Multiple Columns
Replies: 5
Views: 16870

Re: Listview with Multiple Columns

However as wxListCtrl is a wrapper aound a native control, it should support accessibility out of the box. So maybe you should try with a wxListCtrl in icon/text mode. Check the "listctrl" sample, switch to "icon view with text" and see how accessible it is using a screen reader...
by burakkoray
Fri Nov 05, 2021 2:55 am
Forum: Component Writing
Topic: Listview with Multiple Columns
Replies: 5
Views: 16870

Re: Listview with Multiple Columns

Thank you so much for your swift response! Check wxGrid. https://docs.wxwidgets.org/trunk/classwx_grid.html It's very flexible, but unfortunately not very easy to use. Unfortunately wxGrid will not help as I need to make it accessible to screen readers as well. Seems like it's not possible to explor...
by burakkoray
Tue Nov 02, 2021 2:44 am
Forum: Component Writing
Topic: Listview with Multiple Columns
Replies: 5
Views: 16870

Listview with Multiple Columns

Hey there, I'm looking to create a list-like structure with multiple columns, let's say something like chess board where I can have 8x8 squares / items. However, instead of automatic wrapping when vertical / horizontal space not available, I want to manage my own rows / columns. Unfortunately, repor...