.. _GitHub: https://github.com/whellcome/tkextras Examples ======== This section provides practical examples of using `TkeXtras`, demonstrating how to integrate `WidgetsRender` and `TreeviewDataFrame` into your Tkinter projects. Using WidgetsRender ------------------- The `WidgetsRender` class simplifies widget placement in Tkinter using `grid()`, `pack()`, and `place()` with default layout parameters. .. literalinclude:: ../../examples/example_widgets_render.py :language: python :linenos: :caption: Example usage of WidgetsRender :emphasize-lines: 7,10,55,58,64 Using TreeviewDataFrame ----------------------- The `TreeviewDataFrame`class extends `ttk.Treeview`, allowing for seamless integration with Pandas DataFrames. .. literalinclude:: ../../examples/example_treeview_dataframe.py :language: python :linenos: :caption: Example usage of TreeviewDataFrame :emphasize-lines: 6,11,33,37,45,46,49 Further Exploration ------------------- | Feel free to modify and extend these examples to fit your use case. | If you have suggestions or improvements, contribute to the project on GitHub_.