private void axMapControl1_OnMouseDown(object sender, IMapControlEvents2_OnMouseDownEvent e)
{
stdole.IFontDisp font = new stdole.StdFontClass() as stdole.IFontDisp;
font.Bold = true;
font.Name = "黑体";
font.Size = 16;
//IElement element;
//ITextElement textelement = new TextElement() as ITextElement;
//element = textelement as IElement;
//ITextSymbol textSymbol = new TextSymbol();
//IRgbColor color = new RgbColor();
//color.Blue = 255;
//color.Green = 0;
//color.Red = 0;
//textSymbol.Color = color;
//textSymbol.Size = 30;
//textSymbol.Font = font;
//textelement.Symbol = textSymbol;
//textelement.Text = "112314865";
//IPoint ipNew = this.axMapControl1.ActiveView.ScreenDisplay.DisplayTransformation.ToMapPoint(e.x, e.y);
//IElement Element = element;
//Element.Geometry = ipNew;
//IGraphicsContainer pGraphicsContainer = axMapControl1.ActiveView as IGraphicsContainer;
//pGraphicsContainer.AddElement(Element, 0);
//axMapControl1.ActiveView.Refresh();
}