public static readonly DependencyProperty GuidProperty = DependencyProperty.RegisterAttached("Guid", typeof(Guid), typeof(MainPage), null); public static Guid GetGuid(DependencyObject layer) { return (Guid)layer.GetValue(GuidProperty); } public static void Guid(DependencyObject layer, Guid guid) { layer.SetValue(GuidProperty, guid); }