DateStyle style = new DateStyle(); style.From = new DateTime(2006, 3, 20); style.To = new DateTime(2006, 3, 24); style.Style = new Style(); style.Style.BorderLeftColor = Color.LightBlue; style.Style.BorderLeftWidth = 1; style.Style.BorderTopColor = Color.LightBlue; style.Style.BorderTopWidth = 1; style.Style.BorderRightColor = Color.SteelBlue; style.Style.BorderRightWidth = 1; style.Style.BorderBottomColor = Color.SteelBlue; style.Style.BorderBottomWidth = 1; calendar.DayStyles.Add(style); |