从 Xaml 字符串到 Wpf 窗口

发布于 2024-10-28 15:23:05 字数 229 浏览 2 评论 0原文

我在从 Xaml 字符串创建 Wpf 窗口时一直遇到问题。

什么有效: 我有一个正在运行的服务器,可以从远程客户端接收字符串。 (这并不复杂并且工作完美)

什么不起作用: 有时,服务器会收到包含 Xaml 文件内容的字符串。我知道我想使用 Xaml 字符串中指定的所有内容动态创建一个窗口。

有没有简单的方法可以做到这一点?

I keep having problems with creating a Wpf-Window from a Xaml-String.

What works:
I have a Server running which can receive Strings from remote Clients. (That is not complicated and works perfectly)

What doesn’t work:
Sometimes the Server receives a String with the content of a Xaml-File. Know I want to create a window dynamically with all the content specified in the Xaml-String.

Is there an easy way to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

生寂 2024-11-04 15:23:05
var window = XamlReader.Parse(SomeXamlString) as Window;
var window = XamlReader.Parse(SomeXamlString) as Window;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文