1 and 3 - there is only scalebar in print layout dialog. That dialog can be accessed from File -> "Print Layout..." button. In that dialog you also can view current map scale - you need to select Map element and check properties window.
2 - Check DemoMap.exe source code - StatusBarCoordinates.cs
basically code to get coordinates looks something like this:
2 - Check DemoMap.exe source code - StatusBarCoordinates.cs
basically code to get coordinates looks something like this:
Map.GeoMouseMove += Map_GeoMouseMove;
private void Map_GeoMouseMove(object sender, GeoMouseArgs e)
{
xPanel.Caption = String.Format("X: {0:.#####}", e.GeographicLocation.X);
yPanel.Caption = String.Format("Y: {0:.#####}", e.GeographicLocation.Y);
}
}