gpt4 book ai didi

silverlight - 将模板属性值绑定(bind)到模板化控件属性

转载 作者:行者123 更新时间:2023-12-04 06:28:56 25 4
gpt4 key购买 nike

标题有点模糊,问题是:

我通过用我自己的模板交换模板来实现 Silverlight 4 按钮。是否可以将边框角半径绑定(bind)到按钮高度?

例如,用户可以在设计器中设置高度为30,则模板内边框的圆角半径应为15。当高度为50时,圆角半径应为25,以此类推。

如果可能,我需要一个纯 XAML 解决方案。

谢谢

最佳答案

不是纯 Xaml 解决方案。最终,您需要一些东西来至少执行表达式 y/2,这不是任何现有的基于 Xaml 的组件当前提供的东西。

在 Vs2010 中打开项目。添加一个新项目...“Silverlight 模板控件”将其称为“RoundEndedButton”。

将源替换为:-

public class RoundEndedButton : Button
{
public RoundEndedButton()
{
this.DefaultStyleKey = typeof(RoundEndedButton);
SizeChanged += new SizeChangedEventHandler(RoundEndedButton_SizeChanged);
}

public static readonly DependencyProperty CornerRadiusProperty =
DependencyProperty.Register(
"CornerRadius",
typeof(CornerRadius),
typeof(RoundEndedButton),
new PropertyMetadata(new CornerRadius()));

void RoundEndedButton_SizeChanged(object sender, SizeChangedEventArgs e)
{
SetValue(CornerRadiusProperty, new CornerRadius(e.NewSize.Height / 2));
}

}

在themes/Generic.xaml 中修改其默认模板。这是我非常简单的示例:-
<Style TargetType="local:RoundEndedButton">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="local:RoundEndedButton">
<Border x:Name="Background"
Background="{TemplateBinding Background}"
CornerRadius="{TemplateBinding CornerRadius}"
BorderThickness="{TemplateBinding BorderThickness}"
BorderBrush="{TemplateBinding BorderBrush}">
<ContentPresenter
x:Name="contentPresenter"
Content="{TemplateBinding Content}"
ContentTemplate="{TemplateBinding ContentTemplate}"
VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
Margin="{TemplateBinding Padding}"/>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>

注意使用额外的 CornerRadius模板绑定(bind)中的属性。当然,现在您切换回混合,将此控件添加到表面并在样式上获得创意。

关于silverlight - 将模板属性值绑定(bind)到模板化控件属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5677269/

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