如何将对象更改保存到其 XAML?
例如,在 WPF 或 Silverlight 应用程序中,我有:
<Rectangle Height="100" Width="200" Name="rectangle1" Stroke="Black" />
然后在代码中将其属性更改为:
rectangle1.Height = 50;
rectangle1.Width = 50;
如何将这些更改保存到对象的 XAML?
像这样:
<Rectangle Height="50" Width="50" Name="rectangle1" Stroke="Black" />
For example, in a WPF or Silverlight app I have:
<Rectangle Height="100" Width="200" Name="rectangle1" Stroke="Black" />
then in code I change its properties to:
rectangle1.Height = 50;
rectangle1.Width = 50;
How could I save these changes to the object's XAML?
Like this:
<Rectangle Height="50" Width="50" Name="rectangle1" Stroke="Black" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想在更改指定的属性后输出矩形的 XAML,那么您可能需要查看
XamlWriter
类。有一个名为Save
的方法,它将返回一个字符串,其中包含传入对象的 XAML 等效项。在这里查看。希望这有帮助!
If you'd like to output the XAML of your rectangle after changing the properties you specified, then you might want to checkout the
XamlWriter
class. There's a method calledSave
that will return a string containing the XAML equivalent of the object passed in.Check it out here. Hope this helps!