答案1
您可以使用
\RedeclareSectionCommand[toclinefill=\TOCLineLeaderFill]{part}
或者
\DeclareTOCStyleEntry[linefill=\TOCLineLeaderFill]{tocline}{part}
两者均可以用于章节。
例子:
\documentclass{scrbook}
\RedeclareSectionCommands[toclinefill=\TOCLineLeaderFill]{part,chapter}
\begin{document}
\tableofcontents
\part{foo1}
\chapter{foo2}
\section{foo3}
\end{document}