WPF控件的公共类修饰符

时间:2010-01-19 13:43:43

标签: c# wpf windowsformsintegration

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

InsertForm包含名为eUserName的TextBox。

我正在使用以下代码来显示InsertForm。那是成功的。但我无法访问eUserName。如何将Textbox修饰符设置为public?

using System.Windows.Forms.Integration

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

1 个答案:

答案 0 :(得分:62)

这会有用吗?

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