Metadata-Version: 2.1
Name: tkcalendar2
Version: 1.0.0
Summary: show a calendar in your tkinter application
Home-page: UNKNOWN
Author: Smart-Space
Author-email: smart-space@qq.com
License: MIT License
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: pythonnet

# tkrichtext

基于WinForms.RichTextBox的tkinter富文本显示组件。

> 目前仅提供基础显示功能。更多功能请调用`self.rt`实现。

---

# Dependence

tkrichtext uses this package:

- pythonnet(clr)

---

# Usage(TkRichtext Class)

Demo:

```python
from tkinter import Tk
from tkrichtext import TkRichtext

a=Tk()
a.geometry('600x600+5+5')

rt=TkRichtext(a,500,500)
rt.pack(fill='both',expand='True')
#rt.loadfile(r"E:\Py软件\Tin文件\软件说明.rtf")
#you can use "loadfile" to load a *.rtf file.

a.mainloop()
```

loadfile(path:str) => to show a rtf file in your GUI application.



