我有多个项目,如图所示,我正在处理 addpath.cs 我分配图像源如下:
Image image = new Image();
image.Source = new BitmapImage(new Uri("images/arrow.jpg", UriKind.Relative));
当我使用以下内容时:
rt.CenterX = image.Width / 2;
rt.CenterY = image.Height / 2;
宽度和高度的值是楠,所以我猜分配给图像源的 uri 有问题,还是其他什么?