Skip to content

Instantly share code, notes, and snippets.

public static class AttachedProperties
{
public static readonly DependencyProperty IconProperty = DependencyProperty.RegisterAttached(
"Icon",
typeof (StreamGeometry),
typeof (AttachedProperties),
new PropertyMetadata(default(StreamGeometry))
);
public static void SetIcon(UIElement element, StreamGeometry value)