WPF 控件的公共类修饰符
我正在创建 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这行得通吗?
Would this work?