var pin = new Pin
{
Type = PinType.Place,
Position = new Position(currentlat, currentlong),
Label = "My Current Location ",
Address = "My Current Location "
};
map.Pins.Add(pin);
这里当我点击pin时,我可以看到标签地址。但我想在没有点击它的情况下看到针上的标签..
答案 0 :(得分:-2)
您可以使用Map.SelectedPin属性的属性。
只需设置Map.SelectedPin = Pins [i];
这将在您的图钉上显示标签而不点击它。