I have a WPF project say Application 1 and inside of it a user control is defined ..I want to resue this user control in another WPF project ,How I will be able to do it??
Both projects are binded into same source control
|
I have a WPF project say Application 1 and inside of it a user control is defined ..I want to resue this user control in another WPF project ,How I will be able to do it?? Both projects are binded into same source control |
|||
|
|
|
best way is:
but stil you can do this manually with these steps:
Now enjoy your User-control! |
|||||
|
|
Refactor your control into a seperate windows library (dll), and then add that dll to the references for each project. |
|||||
|
|
I am not an expert but let me try. Ensure that your user control is accessible from another project, i.e. there is a reference to the library where this control is defined. Then, at the place where you want this control to be reused, you need to define the namespace and use your control as any other controls. e.g.
|
|||||||
|