Never
Never

Reputation: 323

Binding a control

I created my control in code and I want to bind this control to XAML.
How I can do that? (I need help only in preparing XAML)

Upvotes: 0

Views: 31

Answers (1)

Pongsathon.keng
Pongsathon.keng

Reputation: 1435

you can use ContentControl to host your usercontrol.

  <ContentControl   Content="{Binding ........}"/>

I am not sure this is want you want. I hope this help.

Upvotes: 1

Related Questions