Currently appointments in the DayView and Month view appear in bold, I have found that this is because the activity template sets it to bold. Is there an easy way to switch the bold off, or do you have to hack the template to switch the bold off.
HI,
Please let me know If you need further assistance regarding this issue.
The FontWeight is hard coded in the Template. You could retemplate
Another option
You could wire up the AppointmentPresenter's loaded event and get the TextBlock and modify its value.
<Style TargetType="{x:Type igPrim:AppointmentPresenter}">
<EventSetter Event="Loaded" Handler="AppointmentPresenter_Loaded"/>
</Style>
private void AppointmentPresenter_Loaded(object sender, RoutedEventArgs e)
{
TextBlock tb = Infragistics.Windows.Utilities.GetDescendantFromType(sender as DependencyObject, typeof(TextBlock), false) as TextBlock;
tb.FontWeight = FontWeights.Heavy;
}
Please let me know if you need further assistance regarding this issue.