MFXButton text换行
时间: 2024-04-08 17:28:38 浏览: 44
要在 MFXButton 中实现文本换行,可以使用以下方法之一:
1. 使用\n在文本中插入换行符,例如:
```python
button = MFXButton(text='这是第一行\n这是第二行')
```
2. 使用HTML转义字符 <br> 来表示换行,例如:
```python
button = MFXButton(text='这是第一行<br>这是第二行', unsafe_allow_html=True)
```
请注意,如果使用第二种方法,需要将 `unsafe_allow_html` 参数设置为 `True`,以确保HTML字符被解析为实际的换行符。
阅读全文