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

310 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 answers

0
Tim Schmelter On BEST ANSWER

You could use Enabled:

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