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); }
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.