CustomUserControl Double Click Event in ControlTemplate in WPF

164 Views Asked by At

In WPF I created a CustomUserControl with DoubleClick event handler. I am using this control inside ControlTemplate in this way:

             <xcdg:DataCell FieldName="."  Template="{StaticResource myTemplate}">
                </xcdg:DataCell>

And also this my ControlTemplate:

    <ControlTemplate x:Key="myTemplate" TargetType="xcdg:DataCell">
                        <uicontrols:MyCustomControl  Tag="{Binding ID}"  Margin="0"  Height="140" Width="150" DoubleClick="ctrl_DoubleClick">
    </ControlTemplate>

DoubleClick event handler is not working inside the ControlTemplate. what is the problem and what is the best solution?

1

There are 1 best solutions below

0
On

I found out my answer. rather than using extra template in DateCell. I used inline template.

<xcdg:DataCell FieldName=".">
 <xcdg:DataCell.Template>
   <ControlTemplate> 
     // your template code. here the event of my controls are working.
   </ControlTemplate>
 </xcdg:DataCell.Template>
</xcdg:DataCell>