如何在 Blend 中编辑路径
我使用 Blend 创建了 TextBox 模板的副本。我需要在 ValidationErrorElement 内编辑 Path.Data。我该怎么做?我可以看到 XAML,但我不知道如何使用设计器编辑此路径数据。
I created Copy of a template for TextBox using Blend. I need to edit Path.Data inside ValidationErrorElement. How do I do that? I can see XAML but I can't figure out how to edit this path data using designer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下方法之一编辑路径:
使用“直接选择”工具(工具箱中的白色箭头)。然后您将能够选择并移动路径的锚点。
使用“数据”属性(位于“外观”类别下)
You can edit a path using either one of the following method :
Using the "Direct Selection" tool (The White arrow in the toolbox). Then you will be able to select and move anchor points of the Path.
Using the "Data" property (which is under the Appearance category)
为了在设计器(ArtBoard)中查看路径,您必须启用正确的验证状态。
首先,在“对象和时间轴”窗格中选择路径。然后单击“状态”选项卡。选择 ValidationStates/InvalidUnfocused 或 ValidationStates/InvalidFocused 状态。
现在您应该看到画板中选择的路径。
In order to see the path in the designer (ArtBoard) you have to enable the proper Validation State.
First, select the path in the Objects and Timeline pane. Then click the States tab. Choose the ValidationStates/InvalidUnfocused or ValidationStates/InvalidFocused state.
Now you should see the path selected in the Artboard.