tooltip_label.py 346 B

1234567891011121314
  1. # coding=utf-8
  2. """
  3. @project: MaxKB
  4. @Author:虎
  5. @file: tooltip_label.py
  6. @date:2024/8/22 17:19
  7. @desc:
  8. """
  9. from common.forms.label.base_label import BaseLabel
  10. class TooltipLabel(BaseLabel):
  11. def __init__(self, label, tooltip):
  12. super().__init__('TooltipLabel', label, attrs={'tooltip': tooltip}, props_info={})