
I have a user control inside a RibbonPopup like this:
Whenever a user clicks my control, the popup closes. How can I control this?
Crile
<ActiproShared:PopupButton Grid.Row="0" Grid.Column="2" x:Name="popupChecklist"
Content="Common violation checklist" Visibility="Hidden"
Margin="5"
HorizontalAlignment="Left"
Click="popupChecklist_Click"
>
<ActiproShared:PopupButton.PopupContent>
<ActiproShared:ResizableContentControl
x:Name="checklistContainer"
MinHeight="300"
MinWidth="300"
Padding="2"
BorderBrush="{DynamicResource {x:Static SystemColors.ControlDarkBrushKey}}"
BorderThickness="1">
<SafireControls:InspectionChecklistControl x:Name="PopupChecklistControl" Height="auto" />
</ActiproShared:ResizableContentControl>
</ActiproShared:PopupButton.PopupContent>
</ActiproShared:PopupButton>
Crile