private void SetBodyProperty(object sender, EventArgs e)
{
this.gcCalenderGrid.Body.Margin = new Padding(10);
this.gcCalenderGrid.Body.Padding = new Padding(10);
this.gcCalenderGrid.Body.BackColor = Color.OrangeRed;
this.gcCalenderGrid.Body.PatternEffect = new CalendarPatternEffect(CalendarPatternStyle.DottedDiamond, Color.LemonChiffon);
this.gcCalenderGrid.Body.InnerBackColor = Color.Blue;
this.gcCalenderGrid.Body.InnerBorderStyle = BorderStyle.FixedSingle;
this.gcCalenderGrid.Body.InnerSingleBorderColor = Color.LawnGreen;
}
Private Sub SetBodyProperty(sender As Object, e As EventArgs)
Me.gcCalenderGrid.Body.Margin = New Padding(10)
Me.gcCalenderGrid.Body.Padding = New Padding(10)
Me.gcCalenderGrid.Body.BackColor = Color.OrangeRed
Me.gcCalenderGrid.Body.PatternEffect = New CalendarPatternEffect(CalendarPatternStyle.DottedDiamond, Color.LemonChiffon)
Me.gcCalenderGrid.Body.InnerBackColor = Color.Blue
Me.gcCalenderGrid.Body.InnerBorderStyle = BorderStyle.FixedSingle
Me.gcCalenderGrid.Body.InnerSingleBorderColor = Color.LawnGreen
End Sub