Expanding available examples for beginners to reference #2534
Replies: 1 comment
-
|
Here is are three examples in one script for returning some table element values using a button. Since I had to spend more time figuring out how to do this than I should had, I figured why not try to add this to the main documentation so that others can spend less time trying to do something similar in the future. import dearpygui.dearpygui as dpg dpg.create_context() def _list_table_headers(sender, app_data, user_data): def _list_table_rows(sender, app_data, user_data): def _list_table_cells(sender, app_data, user_data): with dpg.window(label="Tutorial"): dpg.create_viewport(title='Custom Title', width=800, height=600) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
What is the best way to submit examples to the project? The current documentation on "dearpygui.readthedocs.io" still has openings for more examples to help someone new trying to start their own projects.
Having built our companies data collection app using Qt, I have to say that I prefer using DearPyGui now. The plotting utilities alone have features I only dreamed of having in Qt.
However, several times I have run into the issue where I couldn't find a good example to help me solve my next problem.
For example, I was trying to figure out how return a list of a tables header values. After reading deep into the documentation I was able to piece something together after an hour.
I would like to know where I can submit examples for review for later being added to the projects documentation. The goal being to help new users become more comfortable building their projects using dpg.
Beta Was this translation helpful? Give feedback.
All reactions