Пример #1
0
        private async void SaveButton_Click(object sender, RoutedEventArgs e)
        {
            // Load the feature collection table
            await _featCollectionTable.LoadAsync();

            // Save the feature collection
            await _featCollection.SaveAsync();

            // Disable the Save button until next map tap
            SaveButton.IsEnabled = false;
        }