我目前正在开发一个使用Extended WPF Toolkit库中的PropertyGrid的WPF应用程序。
要在独立于语言的庄园中显示名称和描述,我使用的包装类包含所提供文档所需的属性。这是一个缩短的列表
[LocalizedDisplayName("ServerConfig", typeof(Resources.Strings.Resources))]
public class ServerConfigPropertyGrid
{
#region fields
private ServerConfig serverConfig;
#endregion
#region properties
[LocalizedCategory("VeinStoreCategory", typeof(Resources.Strings.Resources))]
[LocalizedDisplayName("ActiveDirectoryPasswordDisplayName", typeof(Resources.Strings.Resources))]
[LocalizedDescription("ActiveDirectoryPasswordDescription", typeof(Resources.Strings.Resources))]
[Editor(typeof(PasswordEditor), typeof(PasswordEditor))]
public string LdapPassword
{
get { return serverConfig.LdapPassword; }
set { serverConfig.LdapPassword = value; }
}
#endregion
#region constructor
public ServerConfigPropertyGrid(ServerConfig serverConfig)
{
// store serverConfig
this.serverConfig = serverConfig;
}
#endregion
}
现在我想为LdapPassword属性使用自定义编辑器,因为它是一个密码,不应该在PropertyGrid中以纯文本形式显示。由于我不是唯一一个而不是第一个提出这个要求的人,我在Codeplex项目的discussions section找到了这样一个编辑器的实现。
public class PasswordEditor : ITypeEditor
{
#region fields
PropertyItem _propertyItem;
PasswordBox _passwordBox;
#endregion
public FrameworkElement ResolveEditor(PropertyItem propertyItem)
{
_propertyItem = propertyItem;
_passwordBox = new PasswordBox();
_passwordBox.Password = (string)propertyItem.Value;
_passwordBox.LostFocus += OnLostFocus;
return _passwordBox;
}
private void OnLostFocus(object sender, RoutedEventArgs e)
{
// prevent event from bubbeling
e.Handled = true;
if (!_passwordBox.Password.Equals((string)_propertyItem.Value))
{
_propertyItem.Value = _passwordBox.Password;
}
}
}
根据Codeplex上提供的文档,所有人需要做的是在属性上添加EditorAttribute,并且一切都应该没问题,但PasswordEditor根本不显示。甚至没有调用构造函数,因此我认为EditorAttribute声明必定存在一些问题。
我目前在配置为在 .NET 4.5.1 中编译的项目中使用扩展WPF工具包的 2.4.0 版本。
有人知道可能出现什么问题?
答案 0 :(得分:0)
我自己找到了解决方案。 WPF应用程序包括一个插件体系结构,它在运行时加载所有类及其依赖项。看起来在查找Xceed类时出现了错误,因此在PropertyGrid中使用了默认编辑器。所以这不是编码而是配置错误。对不起家伙偷你的时间。