Hello, we changed bellIcon of appointment in schedulerControl.
We do this by defining the style:
<Style TargetType="dxschd:AppointmentImagesControl">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="dxschd:AppointmentImagesControl">
<StackPanel Orientation="{TemplateBinding Orientation}" HorizontalAlignment="Left">
<Image Margin="0,0,2,0" MinWidth="16" Height="16" Stretch="None"
Visibility="{Binding ShouldShowReminderImage, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource BoolToVisibilityConverter}}"
Source="{DynamicResource _reminder_16}" UseLayoutRounding="True" />
<Image Margin="0,0,2,0" MinWidth="16" Height="16" Stretch="None"
Visibility="{Binding ShouldShowRecurrenceImage, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource BoolToVisibilityConverter}}"
Source="{x:Static dxschd:DefaultAppointmentImages.Recurrence}" UseLayoutRounding="True" />
<Image Margin="0,0,2,0" MinWidth="16" MinHeight="16" Stretch="None"
Visibility="{Binding ShouldShowChangedRecurrenceImage, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource BoolToVisibilityConverter}}"
Source="{x:Static dxschd:DefaultAppointmentImages.ChangedRecurrence}" UseLayoutRounding="True" />
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
In schedulerControl bellIcon is displayed as expected(custom icon is visible). When we move an appointment with the mouse, while dragging the appointment the default bellIcon is displayed. How can I change the behavior?
Best regards
Axel Fenkart
Hello,
I have managed to reproduce the aforementioned behavior. I am going to discuss this issue with our developers, and we will do our best to find a solution for you as soon as possible.
We will notify you as soon as we make any progress.