BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
scheduleControl1.NavigationPanelFillWithCalendar = true; |
// Set the calendar panel height
var calendarPanel = this.scheduleControl1.NavigationPanel.Controls[1];
calendarPanel.Height = 500;
// Based on the calendar panel height change the splitter location
var splitterControl = this.scheduleControl1.NavigationPanel.Controls[0];
splitterControl.Location = new Point(0, 500); |