gpt4 book ai didi

wpf - wpf中按名称进行特定控件的样式有什么方法吗

转载 作者:行者123 更新时间:2023-12-04 19:03:12 26 4
gpt4 key购买 nike

通过资源设置控件颜色。

在资源文件中:

<style TargetType="{x:Name button1}">
<setter Property="ColorBrush" Value="Red"/>
</style>
<Window .... >
<Button Name="Button1" Content="Test Button" />
</Window>

就像 html 中的 css
 <style>
#controlID
{
color:red;
}
</style>
<body>
<input id="button1" type="button" value="test button" />
</body>

最佳答案

在 window.resources 中定义这样的样式

<Window.Resources>
<Style x:Key="btnStyleRed" TargetType="Button">
<Setter Property="Background" Value="Red"/>
</Style>
</Window.Resources>

并仅在您要应用特定样式的按钮上使用此样式
<Button x:Name="btnLogin" Style="{StaticResource btnStyleRed}" Content="Login" Width="75" />

关于wpf - wpf中按名称进行特定控件的样式有什么方法吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31916738/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com