嘿大家我试图总结并提出基本问题和我的想法到目前为止无效:S
基本上我的问题是: 用户将元素添加到一起,并且我想基于这些图创建新元素,以便可以为用户定义的元素创建新路径。可以说我有一个正方形和一个三角形。用户将其与房屋相结合。现在我想让房子成为用户的元素。为此我需要元素的路径,我该如何创建它?
我的想法 使用的图形元素基于路径字符串。因此,我希望将这些转换为我稍后可以使用的几何元素。我在下面的答案中使用了André Meneses提供的代码,这里复制了代码:
public static Geometry PathMarkupToGeometry(ShieldGearViewModel shieldGearModelRec)
{
string pathMarkup = shieldGearModelRec.Gear.Path;
try
{
string xaml =
"<Path " +
"xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'>" +
"<Path.Data>" + pathMarkup + "</Path.Data></Path>";
var path = System.Windows.Markup.XamlReader.Load(xaml) as System.Windows.Shapes.Path;
// Detach the PathGeometry from the Path
if (path != null)
{
path.Height = shieldGearModelRec.Gear.Height;
path.Width = shieldGearModelRec.Gear.Width;
path.Fill = new SolidColorBrush(Colors.Green);
path.Stretch = Stretch.Fill;
Geometry geometry = path.Data;
//Test not working, exception is thrown
//Rect transRect = new Rect(shieldGearModelRec.Gear.x, shieldGearModelRec.Gear.y, shieldGearModelRec.Gear.Width, shieldGearModelRec.Gear.Height);
//geometry.Transform.TransformBounds(transRect);
path.Data = null;
return geometry;
}
return null;
}
catch (Exception ex)
{
Debug.WriteLine(ex);
}
return null;
}
我这样做是为了让Geometry遵循this link describes中的示例。上面的问题是我无法访问新几何元素的x或y位置,那么如何指定这个位置呢?
对于这个职位,我认为this link可能是一个解决方案,但还没有让它运作起来呢? :)
完成后,我将它添加到基于before链接的几何组中,这样我就可以为新元素获取路径。但几何组的边界为0。 因此,为了实现这一点,我需要为各个几何元素定义x和y,然后这可能会解决几何问题,或者我必须在看完之后看看这个问题:)问题一直存在太久了:|
下面的文字是旧问题和想法
我有一个字符串,我想在后面的代码中转换为几何形状。所以我在Stackoverflow上发现了这个WPF C# Path: How to get from a string with Path Data to Geometry in Code (not in XAML)
此链接表明可以使用以下代码使用parse将字符串转换为路径:
var path = new Path();
path.Data = Geometry.Parse("M 100,200 C 100,25 400,350 400,175 H 280");
但Windows Phone上无法解析。我的其他努力还没有解决这个问题。我尝试使用pathGeometry,但似乎无法将字符串设置为路径?
所以我的问题是如何在不绑定到视图元素的代码中将字符串转换为几何形状。
第一步 所以我成功地使用以下
创建了一个路径var pathTesting = new System.Windows.Shapes.Path();
var b = new System.Windows.Data.Binding
{
Source = DecorationOnShield[i].Gear.Path
};
System.Windows.Data.BindingOperations.SetBinding(pathTesting, System.Windows.Shapes.Path.DataProperty, b);
现在我正在尝试将路径转换为几何形状。
附加
我的想法是和this link describes一样。示例显示:
var blackRectGeometry = new RectangleGeometry();
Rect rct = new Rect();
rct.X = 80;
rct.Y = 167;
rct.Width = 150;
rct.Height = 30;
blackRectGeometry.Rect = rct;
但是我不想使用矩形而是使用任意形状的pat h,但仍然可以设置 coordinates <等信息/ em>和 size 。
附加
我正在考虑定义一个usercontrol,它包含一个只有这样的路径:
<UserControl x:Class="UndoRedoShield.View.Geometry"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity"
xmlns:cmd="clr-namespace:GalaSoft.MvvmLight.Command;assembly=GalaSoft.MvvmLight.Extras.WP8"
mc:Ignorable="d"
Canvas.Left="{Binding Gear.x}" Canvas.Top="{Binding Gear.y}">
<Path Data="{Binding Gear.Path}" Fill="{Binding Gear.Color}" Stretch="Fill" UseLayoutRounding="False" Height="{Binding Gear.Height}" Width="{Binding Gear.Width}" Opacity="{Binding Gear.Opacity}">
<Path.RenderTransform>
<ScaleTransform ScaleX="{Binding Gear.Scale}" ScaleY="{Binding Gear.Scale}"/>
</Path.RenderTransform>
</Path>
</UserControl>
但是无法以任何方式使用它来处理几何。任何人都有使用这种方法的想法吗?任何方法表示赞赏! :)
额外额外:)
是否可以从uielements中创建几何形状,以便渲染的用户控件可以转换为几何路径?
进度
我找到this link我可以从路径创建几何图形。路径具有属性宽度和高度。
但我在几何或路径中没有的属性如下:
似乎可以通过Path.Data的bounds属性来完成。但不是ZIndex。所以这仍然需要使用geometryGroup进行测试,并且需要将Geometry添加到GeometryGroup。
答案 0 :(得分:7)
前段时间,在为此寻找解决方案时,我最终创建了此功能。也许它会帮助你。
public static Geometry PathMarkupToGeometry(string pathMarkup)
{
try
{
string xaml =
"<Path " +
"xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation'>" +
"<Path.Data>" + pathMarkup + "</Path.Data></Path>";
var path = XamlReader.Load(xaml) as Path;
// Detach the PathGeometry from the Path
if (path != null)
{
Geometry geometry = path.Data;
path.Data = null;
return geometry;
}
return null;
}
catch (Exception ex)
{
Debug.WriteLine(ex);
}
return null;
}
然后我这样调用这个函数:
var arrow = new Path
{
Data = DesignHelpers.PathMarkupToGeometry("M-1,0 L0,1 L1,0"),
Fill = new SolidColorBrush(Colors.Black),
Stretch = Stretch.Fill,
Height = 12,
Width = 18,
HorizontalAlignment = HorizontalAlignment.Center
};
我不知道这是否完全符合您的需求,但也许可以提供帮助。
答案 1 :(得分:3)
Geometry.Parse(据我所知,它的后端StreamGeometry)确实在Windows Phone平台上缺失,但根据此页面:http://msdn.microsoft.com/en-us/library/ms752293(v=vs.110).aspx
WPF提供了两个提供迷你语言来描述的类 几何路径:StreamGeometry和PathFigureCollection。
PathFigureCollection 可用于Windows Phone,因此这看起来像是要检查的地方:
现在您只需要能够从XAML样式标记创建PathGeometry。看起来这里有一些示例用于从XAML语法生成路径:
Convert XAML PathGeometry to WPF PathGeometry
Windows Phone 7: How to parse Bezier Path string like in XAML?
基本上像
string data = "M 100,200 C 100,25 400,350 400,175 H 280";
Path path = XamlReader.Load("<Path Data='" + data + "'/>") as Path;