更改 WPF 扩展器中标题的背景颜色
我正在尝试更改扩展器背景颜色。 看起来很简单,但我无法让它工作。
<Expander Name="expOneDay">
<Expander.Header>
<TextBlock Foreground="CadetBlue" Text="Some Text" HorizontalAlignment="Stretch" />
</Expander.Header>
...
</Expander><br/><br/>
为什么 HorizontalAlignment="Stretch"
没有帮助? 我试图将 Header
的宽度绑定到 Expander
的宽度,但结果不太好看。
I am trying to change the expander background color. It seems so easy but I can't get it to work.
<Expander Name="expOneDay">
<Expander.Header>
<TextBlock Foreground="CadetBlue" Text="Some Text" HorizontalAlignment="Stretch" />
</Expander.Header>
...
</Expander><br/><br/>
Why doesn't HorizontalAlignment="Stretch"
help? I am trying to bind the width of Header
to the width of Expander
but the result is not nice looking.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这里,这应该可以解决问题......您应该将标题模板的宽度设置为扩展器的宽度。
here you go, this should do the trick.... You should set the width of the header template to the width of the expander.