可以使用附加属性。事实上,这正是附加属性的目的:访问父元素属性或为特定元素添加附加功能。
例如,在应用程序的某处定义以下类:
using System;
using System.Windows;
using System.Windows.Controls;
namespace YourApp.AttachedProperties
{
public class MoreProps
{
public static readonly DependencyProperty MarginRightProperty = DependencyProperty.RegisterAttached(
"MarginRight",
typeof(string),
typeof(MoreProps),
new UIPropertyMetadata(OnMarginRightPropertyChanged));
public static string GetMarginRight(FrameworkElement element)
{
return (string)element.GetValue(MarginRightProperty);
}
public static void SetMarginRight(FrameworkElement element, string value)
{
element.SetValue(MarginRightProperty, value);
}
private static void OnMarginRightPropertyChanged(DependencyObject obj, DependencyPropertyChangedEventArgs args)
{
var element = obj as FrameworkElement;
if (element != null)
{
int value;
if (Int32.TryParse((string)args.NewValue, out value))
{
var margin = element.Margin;
margin.Right = value;
element.Margin = margin;
}
}
}
}
}
现在,在您的 XAML 中,您所要做的就是声明以下命名空间:
xmlns:ap="clr-namespace:YourApp.AttachedProperties"
然后您可以编写 XAML,如下所示:
<Button ap:MoreProps.MarginRight="10" />
或者,您可以避免使用附加属性,而是编写一些稍微冗长的 XAML,例如:
<Button>
<Button.Margin>
<Thickness Right="10" />
</Button.Margin>
</Button>