Hi all.
I have a WPF non-addin UserControl library. Now i want to use controls in this library in my AddIn Project.
I tried the following code
<customControl id="ucs_lib" caption="Text Color" className="ControlLibrary.XColorPickerViewModel" assembly="ControlLibrary.dll" loadOnClick="true" smallImage="GenericButtonPurple16" largeImage="GenericButtonPurple32">
<content className="ControlLibrary.XColorPicker" assembly="ControlLibrary.dll" />
<tooltip heading="Text color">
<disabledText />
</tooltip>
</customControl>
...
<group id="text_group">
<customControl refID="ucs_lib" size="large" />
</group>But this control not shown. What's wrong here?
What proper way to reference user control from non-addin library?
Thanks.