如何将对象更改保存到其 XAML?

发布于 2024-10-16 04:40:53 字数 397 浏览 1 评论 0原文

例如,在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那请放手 2024-10-23 04:40:53

如果您想在更改指定的属性后输出矩形的 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 called Save that will return a string containing the XAML equivalent of the object passed in.

Check it out here. Hope this helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文