Hi Roberson Gazolli,
Thanks for your patience.
To disable the Caption panel as per your requirement, you can achieve this by
setting the Visible property of the CaptionPanel to false. Please refer to the
code snippet below.
|
public Form1()
{
InitializeComponent();
CustomFilterComboBox.DataSource = new
ObservableCollection<string>() { "DataSource1",
"DataSource2", "DataSource3" };
CustomFilterComboBox.SelectedValueChanged +=
CustomFilterComboBox_SelectedValueChanged;
scheduleControl1.CaptionPanel.Visible
= false;
}
|
For your reference, we have attached the sample. Please take a look at it.
Regards,
Santhosh.G
Attachment:
WinForms_ScheduleControl_NetCore_ca7766e7.zip