Creating a WPF User Control with Tag Connection

Discussion of application development using iX Developer, including but not limited to getting started, using the functions tab, properties, objects and installation.
Post Reply
toxico
Posts: 1
Joined: Wed Mar 19, 2014 3:33 am

Creating a WPF User Control with Tag Connection

Post by toxico »

Similar to the manual (Control > WPF Controls > Creating a WPF User Control with Tag Connection) I used Visual Studio to write my own user control. In a test application with VS everything works fine.

After compiling I get a .dll file. But what now? At this point the manual ends :?

To add the namespace in VS I write this within the <Window> Tag

Code: Select all

xmlns:UC="clr-namespace:AxisControl;assembly=AxisControl"
After that i can add my Control, the Binding and an converter:

Code: Select all

<UC:UserControl1 Margin="0" Padding="0" Value="{Binding ElementName=slid,Path=Value,Converter={StaticResource PosCon}}" />
In ixDeveloper2.10 I can import the .dll (Project > Referenced Assemblies) and now? Howto import the namespace in the XAML within all this "neo", "ntss" and "nacs" namespaces?
Is there a Code sample?

stuartm
Posts: 61
Joined: Thu Jun 06, 2013 9:21 am

Re: Creating a WPF User Control with Tag Connection

Post by stuartm »

Hello Sir,

Please see attachment.

Best Regards,
Stuart
Attachments
bjorn.png
bjorn.png (190.31 KiB) Viewed 5776 times

Post Reply