Skip to content

Commit

Permalink
Merge pull request #88 from shaunroselt/Samples-Readme
Browse files Browse the repository at this point in the history
Added a Caption for the StringGrid Sample and added a screenshot to the Samples Readme for the StringGrid Sample
  • Loading branch information
checkdigits authored Sep 8, 2023
2 parents ac27c9e + e9c7ccb commit d3f0678
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions samples/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
## StringGrid > stringgrid.py
![Python GUI App - StringGrid > stringgrid.py](https://github.com/shaunroselt/DelphiFMX4Python/assets/5418178/ceecb0ef-5cb9-4134-b751-650b708cd32f)


## PasswordGenerator.py
![Python GUI App - PasswordGenerator.py](https://github.com/shaunroselt/DelphiFMX4Python/assets/5418178/8ac2aa72-44f2-4cf3-9f1f-60929cf41c60)


## ControlsDesktop > controlsdemo.py
![Python GUI App - ControlsDesktop > controlsdemo.py](https://github.com/shaunroselt/DelphiFMX4Python/assets/5418178/70348e6c-e9d0-4314-8204-d0a7fef2eb58)

Expand Down
4 changes: 3 additions & 1 deletion samples/StringGrid/stringgrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
class StringGridSample(Form):

def __init__(self, owner):
self.caption = "String Grid Sample"

self.string_grid = StringGrid(self)
self.currency_column1 = CurrencyColumn(self.string_grid)
self.glyph_column1 = GlyphColumn(self.string_grid)
Expand Down Expand Up @@ -185,4 +187,4 @@ def main():


if __name__ == "__main__":
main()
main()

0 comments on commit d3f0678

Please sign in to comment.