I want to take Event Trigger of Datagrid Cell. I mean to say I want to write something like this
**<EventTrigger EventName="MouseEnter">**
and then call function this from XAML:
void Cell_MouseEnter(object sender, MouseEventArgs e)
How would I do that:
i have this in XAML
<ctrls:RhinoDataGrid x:Name="dataGrid" Grid.Row="1" Margin="5" ItemsSource="{Binding Model.CurrentDataTable}"
Style="{StaticResource RhinoDataGridBaseStyle}" IsReadOnly="{Binding Model.IsLinkFile}"
SelectedValue="{Binding Model.CurrentDataRow}" SelectedValuePath="Row" SetAutomappingOnOff="{Binding IsAutoMap, Mode=TwoWay}" >
</ctrls:RhinoDataGrid>
<Style TargetType="{x:Type DataGridCell}">
<Setter Property="BorderBrush" Value="Transparent"></Setter>
<Setter Property="BorderThickness" Value="2"></Setter>
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Setter Property="Foreground" Value="White"></Setter>
<Setter Property="BorderBrush" Value="{DynamicResource ActiveItemBrush}"></Setter>
<Setter Property="BorderThickness" Value="2"></Setter>
</Trigger>
</Style.Triggers>
Pls help
Thanks Dee
Check for "IsMouseOver" instead. I assume "RhinoDataGrid" inherits from our known WPF's DataGrid.