tags:

views:

22

answers:

1

Hi

I want to add gridview column to a listview which resides in an usercontrol from another Windows screen (Parent).

Example;

<Canvas>
  <StackPanel Height="100" Width="300" Name="listViewHolder">
      <ListView Name="LstView"/>
   </StackPanel>
 </Canvas>

I want to use this user control in Windows

how can i change the listview style,itemcontainerstyle, or add gridviewcolumn

    </my1:ListViewNavigation>
</Canvas>

Please let me know is there any other way to design this scenario.

Regards Jegan

A: 

We can use dependency property to pass the property to child controls...

Regards Jegan

Jgn