I hope add a Button into a Table #3084
Answered
by
freakboy3742
MagicCatGroup
asked this question in
Q&A
|
I use code below: In the code,the function 'load_data()' is defined by myself.As a result, when i run the whole programme, the window dont show the button i needed, and i get a warn warn("Winforms does not support the use of widgets in cells") |
Answered by
freakboy3742
Jan 11, 2025
Replies: 1 comment 3 replies
|
The warning is telling you everything that there is to know. Winforms does not support the use of widgets in table cells. This is also documented. There's no secret workaround - the feature doesn't exist. The documentation for table also notes that Widgets in cells is a beta API which may change in future, and is currently only supported on macOS. |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are only three options here:
I'd suggest that (3) is likely the easiest option.