我想使用我的 CornerRadius 属性创建一个带圆角的 ToggleButton。正如您在下面的代码中看到的,我已经向我的 xaml ToggleButton 添加了一个cornerRadius 属性来传递一个半径值。但是我找不到在 c# 中使用这个值来创建一个带圆角的 ToggleButton 的方法。
C#
public static readonly DependencyProperty CornerRadiusProperty =
DependencyProperty.Register("CornerRadius", typeof(int), typeof(MyToggleButton),
new PropertyMetadata(0)); //Default CornerRadius = 0
public int CornerRadius
{
get { return (int)GetValue(CornerRadiusProperty); }
set { SetValue(CornerRadiusProperty, value); }
}
XAML
<custom:MyToggleButton Height="25" Content="Test" CornerRadius="15" />
那么如何使用我的属性“CornerRadius”创建一个带圆角的切换按钮?如果有人可以帮助我,那就太好了。