如何在 wcf 中动态向选项卡控件添加内容?
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您指的是 WPF:
这会向第一个选项卡页添加一个按钮。您可以将此示例中的按钮替换为任何其他内容。
Assuming you mean WPF:
This adds a button to the first tab page. You could replace the button in this example with any other content.