更改最小值,最大值或范围的QSlider事件

时间:2018-03-15 13:30:18

标签: c++ qt qslider

当QSlider的最小值,最大值或范围发生变化时,有没有办法捕捉事件?就像func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool { return true } func tableView(_tableview:UITableView, moveRowAtIndexPath sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath) { let temp = categories[sourceIndexPath.section] categories[sourceIndexPath.section] = categories[destinationIndexPath.section]; categories[destinationIndexPath.section] = temp } func tableView(_ tableView: UITableView, shouldIndentWhileEditingRowAt indexPath: IndexPath) -> Bool { return false } func tableView(_ tableView: UITableView, editingStyleForRowAt indexPath: IndexPath) -> UITableViewCellEditingStyle { return .none } setMaximum()setMinimum()是Qt信号一样。

1 个答案:

答案 0 :(得分:2)

是的,您可以连接到rangeChanged信号。