Skip to content

Commit d3f0678

Browse files
authored
Merge pull request #88 from shaunroselt/Samples-Readme
Added a Caption for the StringGrid Sample and added a screenshot to the Samples Readme for the StringGrid Sample
2 parents ac27c9e + e9c7ccb commit d3f0678

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

samples/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
1+
## StringGrid > stringgrid.py
2+
![Python GUI App - StringGrid > stringgrid.py](https://github.com/shaunroselt/DelphiFMX4Python/assets/5418178/ceecb0ef-5cb9-4134-b751-650b708cd32f)
3+
4+
15
## PasswordGenerator.py
26
![Python GUI App - PasswordGenerator.py](https://github.com/shaunroselt/DelphiFMX4Python/assets/5418178/8ac2aa72-44f2-4cf3-9f1f-60929cf41c60)
37

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

samples/StringGrid/stringgrid.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
class StringGridSample(Form):
55

66
def __init__(self, owner):
7+
self.caption = "String Grid Sample"
8+
79
self.string_grid = StringGrid(self)
810
self.currency_column1 = CurrencyColumn(self.string_grid)
911
self.glyph_column1 = GlyphColumn(self.string_grid)
@@ -185,4 +187,4 @@ def main():
185187

186188

187189
if __name__ == "__main__":
188-
main()
190+
main()

0 commit comments

Comments
 (0)