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
15
Infragistics.Win.UltraWinSchedule.UltraMonthViewSingle Is it possible to display specific date notes or colors on the calendar?
posted

Infragistics.Win.UltraWinSchedule.UltraMonthViewSingle 달력에 특정 날짜 메모나 색상을 표시할 수 있습니까?

Parents
No Data
Reply
  • 530
    Offline posted

    Hello,

    On the appointment rectangle, the Subject property is presented. We do not provide a feature to change it to present the Description property. You can check the Description that is related to an appointment, by hovering mouse.

    And for the background color of a specific appointment, you can do so by changing BackColor property of the Appointment object.

    private void button1_Click(object sender, EventArgs e)
    {
        this.ultraCalendarInfo1.Appointments[0].Appearance.BackColor = Color.Red;
    }

    If you have any question with this, please let me know.

    Thanks,
    Yuki

Children
No Data