How to set monthcalendar (c#) to be readonly?

338 Views Asked by At

There's some way to make monthcalendar control in C# (Windows forms) not editable for the user?

I'm looking for some code like:

myMonthcalendar.ReadOnly = true;
2

There are 2 best solutions below

0
On BEST ANSWER

You could use Enabled:

myMonthcalendar.Enabled = false;
0
On
myMonthcalendar.Enabled = false;