我知道这个问题之前已经被问过,但不是在这个上下文中!
我有一个 WPF 应用程序(第三方),它使我可以添加 XAML 资源字典,因此我创建了一个带有实现 ICommand 接口并在执行方法中调用 WebService 的类的 ClassLibrary。
现在我想将此命令附加到应用程序中的控件!
这是我的资源字典:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:iet="clr-namespace:iETSolutions.Enterprise.WorkCenter.Controls;assembly=iETSolutions.Enterprise.WorkCenter.Controls"
xmlns:custom="clr-namespace:Custom.Test;assembly=Custom.Test">
<Style TargetType="{x:Type Button}">
<Style.Triggers>
<DataTrigger Binding="{Binding RelativeSource={RelativeSource Self}, Path=Name}" Value="SearchButton">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Grid>
<Button Command="{StaticResource cmd}" CommandParameter="{Binding ElementName=SearchTextBox, Path=Text}">
<Image Source="pack://application:,,,/iETSolutions.Enterprise.WorkCenter;component/Images/PNG/iET_search.png" />
</Button>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</DataTrigger>
</Style.Triggers>
</Style>
</ResourceDictionary>
所以这就像魅力一样,如果我将我的 Custom.Test.dll 添加到 GAC 但如果我尝试从 app.config 引用 DLL,CommandCall 会失败......
这是我在 App.config 中尝试引用程序集的内容:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Custom.Test" publicKeyToken="314daa73fc3fb7cf" culture="neutral"/>
<codeBase version="1.0.0.0" href="http://localhost/Custom/Custom.Test.dll" />
</dependentAssembly>
</assemblyBinding>
</runtime>
有没有可能我可以在不需要将我的自定义 DLL 放入 GAC 的情况下让它工作?
对于应用程序的推出,在 App.config 中引用会更容易......