WPF 控件的公共类修饰符

发布于 2024-08-18 08:28:24 字数 376 浏览 5 评论 0原文

我正在创建 Windows 应用程序和类库。类库包含名为“InsertForm.xaml”的 WPF 控件

InsertForm 包含名为 eUserName 的 TextBox。

我使用以下代码来显示 InsertForm。这样就成功了。但我无法访问 eUserName。如何将文本框修饰符设置为公共?

使用 System.Windows.Forms.Integration

ElementHost host = new ElementHost();
iform= new Extender.InsertForm();
host.Child = iform;
this.Controls.Add(host);

I'm creating Windows application and Class library. Class library contains WPF control named "InsertForm.xaml"

InsertForm contains TextBox named eUserName.

I'm using the following code to show InsertForm. That's successful. But I can't access eUserName. How to set Textbox modifiers to public?

using System.Windows.Forms.Integration

ElementHost host = new ElementHost();
iform= new Extender.InsertForm();
host.Child = iform;
this.Controls.Add(host);

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

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

发布评论

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

评论(1

又爬满兰若 2024-08-25 08:28:24

这行得通吗?

<TextBox Name="eUserName" x:FieldModifier="public"/>

Would this work?

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