我有一个CustomControl,比如说Grid with Button,我不能直接修改它。该嵌套按钮的 Content 属性设置为“Hello world”。CustomControl 不会将此按钮暴露给外部代码。那么,如何在主窗口中设置此属性?我试图设置风格
<Style TargetType="{x:Type Button}">
<Setter Property="Content" Value="Bye" />
</Style>
如果没有设置按钮的属性,它可以完美地工作,遗憾的是,这不是我的情况。