如何使用Gmap.net更改工具提示的单词的前景色?
GMarkerGoogle marker = new GMarkerGoogle(new PointLatLng(Convert.ToDouble(Mark_Latitude[Mark_Longitude.Count - 1]), Convert.ToDouble(Mark_Longitude[Mark_Longitude.Count - 1])),GMarkerGoogleType.green);
GMapOverlay gMapOverlay = new GMapOverlay("polygons");
gMapOverlay.Markers.Add(marker);
marker.ToolTipMode = MarkerTooltipMode.OnMouseOver;
marker.ToolTip = new GMapBaloonToolTip(marker);
Brush ToolTipBackColor = new SolidBrush(Color.Transparent);
Font f = new Font("Arial", 9, FontStyle.Bold);
ToolTipBackColor.GetType();
marker.ToolTip.Stroke.Color = Color.FromArgb(0, 255, 255, 0);
marker.ToolTip.Font = f;
marker.ToolTip.Fill = ToolTipBackColor;
marker.ToolTipText = ":" + Mark_Longitude[Mark_Longitude.Count - 1] + " :" + Mark_Latitude[Mark_Latitude.Count - 1];
说明问题的图片如下:
答案 0 :(得分:2)
您只需设置Foreground
属性:
marker.ToolTip.Foreground = Brushes.Green;