我有以下画布代码:
<Canvas>
<Canvas.Background>
<DrawingBrush TileMode="Tile" Viewport="0,0,40,40"
ViewportUnits="Absolute">
<DrawingBrush.Drawing>
<GeometryDrawing>
<GeometryDrawing.Geometry>
<RectangleGeometry Rect="0,0,400,400"/>
</GeometryDrawing.Geometry>
<GeometryDrawing.Pen>
<Pen Brush="Red" Thickness="1"/>
</GeometryDrawing.Pen>
</GeometryDrawing>
</DrawingBrush.Drawing>
</DrawingBrush>
</Canvas.Background>
</Canvas>
此画布会生成一个网格,就像您可以在excel上找到它一样。
现在我想知道是否也可以生成坐标。
对于cooridnates,我的意思是第一行中的第一行中有一个很小的文本,上面写着“ A0”,下一个行中有“ B0”,因此每个单元格都具有类似于Excel的坐标。 br />
这可能吗?