Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看到这样的 XAML 标记:
<Style x:Key="SmallSquareButton" BasedOn="{x:Null}" TargetType="{x:Type Button}">
我想知道为什么有必要将 BasedOn 属性设置为 null。从文档中, Style.BasedOn 的默认值为 null。我在这里错过了什么吗?
也许他们只是想表达清楚?还是他们认为它更完整?我认识很多人对代码这类事情有强迫症。就个人而言,我想不出任何理由为什么需要它。如果这是我过去看到的任何东西,那么可能是一个人无缘无故地做了,团队中的其他人只是复制粘贴。