如何在 wcf 中动态向选项卡控件添加内容?

发布于 2024-09-07 18:28:43 字数 177 浏览 2 评论 0原文

如何在 wcf 中动态向选项卡控件添加内容?我的意思是,将内容添加到单击选项卡控件时可见的显示区域。

请允许我重新表述一下。我有一个 WCF 应用程序。在此应用程序中,我有一个在 XAML 中定义 id 的选项卡控件。在 XAML 中向选项卡控件的页面添加内容很容易。如何在 tuntime 时用 C# 代码向页面添加内容?

How do you add content to a tab control dynamically in wcf? I mean add content to the display area that comes visibile when clicking on the tab control.

Allow me to rephrase this. I have a WCF app. In this app, I have a tab control that id defined in the XAML. It is easy to add content to the pages of the tab control in the XAML. How do I add content to the pages in the C# code at tuntime?

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

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

发布评论

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

评论(1

守护在此方 2024-09-14 18:28:43

假设您指的是 WPF:

((TabItem)tabControl1.Items[0]).Content = new Button() { Content = "Dynamically Added Button" };

这会向第一个选项卡页添加一个按钮。您可以将此示例中的按钮替换为任何其他内容。

Assuming you mean WPF:

((TabItem)tabControl1.Items[0]).Content = new Button() { Content = "Dynamically Added Button" };

This adds a button to the first tab page. You could replace the button in this example with any other content.

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