private void MapCenter_MapSelectedForOpening(object sender, Mapping.Controls.MapCenter.MapEventArgs e) { if (e != null && e.Map != null) { CreateNewApplicationCommand.CreateNewApplication(MapCenter.GetMapXaml(e)); } }
void mapCenter_MapSelectedForOpening(object sender, MapCenter.MapEventArgs e) { if (e != null && e.Map != null) { mapXaml = MapCenter.GetMapXaml(e); btnOk.IsEnabled = true; } BuilderApplication.Instance.HideWindow(mapCenter); }