WPF:如何在动态创建的 WPF 窗口中动态添加控件
我想在我的 C# 项目中添加一个 WPF 输入框。我从 C# 中的InputBox 获得了一个 WinForm,但它具有 Winform 的外观和感觉。所以我在 WPF 中重新创建它。我已经创建了所有控件(标签、按钮、文本框),但无法将它们添加到我的窗口中。
static Window winInputDialog
窗口通过 ShowDialog 显示,但没有控件。
I want to add a WPF Input Box in my Project in C#. I got a WinForm one from InputBox in C# but it has Winform look and feel. So i was recreating it in WPF. I have created all the controls (Label, Button, Textbox) but i am unable to add them to my window.
static Window winInputDialog
The Window is showing through ShowDialog but without controls.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有两种方法可以在窗口中获取控件:
通过代码添加控件。以下是创建窗口并将控件放入其中的简短示例:
There are two ways to get controls in your window:
Add the controls by code. Here is a short, simple sample of creating a window and putting controls in it: