Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1130
How can "Click To Add Appointment" be disabled in WPF?
posted

How can "Click To Add Appointment" be disabled in WPF?

Parents
  • 54937
    Offline posted

    There's no property currently exposed to disable it but the element is a ClickToAddActivityElement so you could change its template to not have anything visible or set its Opacity/IsHitTestVisible so it won't be visible or interactive. E.g.

    <Style TargetType="igPrim:ClickToAddActivityElement">
     <Setter Property="Opacity" Value="0" />
     <Setter Property="IsHitTestVisible" Value="False" />
    </Style>

Reply Children
No Data