C1Scheduler for Winforms:高亮选择项

C1Scheduler for Winforms 自发布之日起就受到广大用户的欢迎。它拥有众多用户友好性功能,其中之一就是实现了 Microsoft Office Styling Scheduling 主题样式。更改“事件”的外观为最受欢迎功能之一。可以通过BeforeAppointmentFormat 事件定制。该事件中我们可以灵活定制“事件”的文本、图表、背景色。更多信息可以参考在线帮助文档:Documentation 。在本博客中,使用该特性,我们将阐述如何实现高亮选择项。Download C# SampleDownload VB.Net Sample

发布于 2013/03/08 00:00

ComponentOne Enterprise

C1Scheduler for Winforms 自发布之日起就受到广大用户的欢迎。它拥有众多用户友好性功能,其中之一就是实现了 Microsoft Office Styling Scheduling 主题样式。

更改“事件”的外观为最受欢迎功能之一。可以通过BeforeAppointmentFormat 事件定制。该事件中我们可以灵活定制“事件”的文本、图表、背景色。更多信息可以参考在线帮助文档:http://helpcentral.componentone.com/nethelp/c1schedule/#!XMLDocuments/Ref/html/E_C1_Win_C1Schedule_C1Schedule_BeforeAppointmentFormat.htm 。

在本博客中,使用该特性,我们将阐述如何实现高亮选择项。

参考代码:

 

Private Sub C1Schedule1_BeforeAppointmentFormat(ByVal sender As Object, ByVal e As C1.Win.C1Schedule.BeforeAppointmentFormatEventArgs) Handles C1Schedule1.BeforeAppointmentFormat
   If C1Schedule1.SelectedAppointments.Contains(e.Appointment) Then
       e.BackColor = Color.Blue
   Else
       e.BackColor = e.Appointment.Label.Color
   End If
End Sub
 
Private Sub C1Schedule1_SelectedAppointmentsChanged(ByVal sender As Object, ByVal e As C1.Win.C1Schedule.SelectedAppointmentsChangedEventArgs) Handles C1Schedule1.SelectedAppointmentsChanged
   For Each app As Appointment In C1Schedule1.DataStorage.AppointmentStorage.Appointments
       If C1Schedule1.SelectedAppointments.Contains(app) Then
          app.Tag = "change"
       Else
          app.Tag = Nothing
       End If
   Next
End Sub

下载示例:

Download C# Sample
Download VB.Net Sample

关于葡萄城

葡萄城软件是专业的软件开发技术和低代码平台提供商,以“赋能开发者”为使命,致力于通过表格控件、低代码和BI等各类软件开发工具和服务,一站式满足开发者需求,帮助企业提升开发效率并创新开发模式。葡萄城开发技术始于1980年,40余年来始终聚焦软件开发技术,有深厚的技术积累和丰富的产品线。是业界能够同时赋能软件开发和低代码开发的企业。凭借过硬的产品能力、活跃的用户社区和丰富的伙伴生态,与超过3000家合作伙伴紧密合作,产品广泛应用于信息和软件服务、制造、交通运输、建筑、金融、能源、教育、公共管理等支柱产业。

相关产品
推荐相关案例
关注微信
葡萄城社区二维码

关注“葡萄城社区”

活字格低代码二维码

关注“活字格低代码”

想了解更多信息,请联系我们, 随时掌握技术资源和产品动态