WPF扩展工具包入门

时间:2014-02-24 22:03:14

标签: .net wpf toolkit

下载并安装Extended WPF Toolkit - 2.1.0
添加了参考文献
我可以看到它对象探险家
我找不到AutoSelectTextBox下面的错误。

<Window x:Class="ComboBoxDynamic.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <StackPanel>
            <StackPanel.Resources>
                <Style TargetType="{x:Type  xctk:AutoSelectTextBox}">
                    <Setter Property="Margin" Value="5"/>
                    <Setter Property="AutoSelectBehavior" Value="{Binding SelectedItem, ElementName=_autoSelectBehavior}"/>
                    <Setter Property="AutoMoveFocus" Value="{Binding IsChecked, ElementName=_autoMoveFocus}"/>
                </Style>
            </StackPanel.Resources>
        </StackPanel>
    </Grid>
</Window>

但在代码背后我可以访问。

Xceed.Wpf.Toolkit.AutoSelectTextBox astb = new AutoSelectTextBox();

1 个答案:

答案 0 :(得分:2)

之前我见过这个错误,因为Windows因为下载而阻止了DLL。请参阅https://wpftoolkit.codeplex.com/releases/view/106016

说明中的第3步
  • 在Windows资源管理器中右键单击 - &gt;属性 - &gt;解除封锁。对您需要的所有DLL执行此操作或删除它们并取消阻止压缩并再次提取。

或者

  • 在VS中删除对DLL的引用并改为使用nuget包。

相关问题:Unblocking a DLL on a company machine. How?