添付プロパティを使用できます。実際、これはまさにアタッチされたプロパティの目的です。つまり、親要素のプロパティにアクセスしたり、特定の要素に機能を追加したりすることです。
たとえば、アプリケーションのどこかに次のクラスを定義します。
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>