Numéro d’ID de bogue |
BUG-000092761 |
Envoi | December 5, 2015 |
Dernière modification | February 10, 2025 |
S’applique à | ArcGIS Runtime SDK |
Version trouvée | 10.2.5 |
Système d’exploitation | Windows OS |
Version du système d’exploitation | 7.0 64 Bit |
Statut | Non-Reproducible
Ce problème n’a pas pu être reproduit au cours des tests réalisés par l’équipe de développement. Ce statut peut être attribué aux problèmes qui sont impossibles à reproduire ou qui ne sont plus d’actualité dans une version de développement du logiciel, alors qu’aucun correctif spécifique n’a été installé pour résoudre le problème. Pour d’autres explications, reportez-vous à la section Informations supplémentaires correspondant au problème.
|
Informations supplémentaires
Appears to be a bug in FixedDocument. Suggested workaround:
```
Code will move MapView from here and place it in the above DocumentViewer. The user wants to be able to print the map but the application always throws an ArgumentNullException.
```
```
public MainWindow()
{
InitializeComponent();
this.Loaded += (sender, args) =>
{
// Remove the MapView from the Layout
GridLayout.Children.Remove(MyMapView);
MyMapView.Width = MyMapView.Height = 300;
// Add the MapView to a Fixed Page
var fixedPage = new FixedPage { Width = 300, Height = 300 };
fixedPage.Children.Add(MyMapView);
GridLayout.Children.Remove(listBox);
listBox.Width = listBox.Height = 300;
fixedPage.Children.Add(listBox);
// Add the FixedPage to the PageContent
var pageContent = new PageContent { Child = fixedPage };
// Add the PageContent to the FixedDocument
MyFixedDocument.Pages.Add(pageContent);
};
}
```
Étapes pour reproduire
ID de bogue: BUG-000092761
Logiciel: