Tristate Checkbox
C#
3
Posts
3
Posters
0
Views
1
Watching
-
Hi there I wand to develop a custom control in C# that is Tristate Checkbox, Shall I get any sample coe in C#?
-
Hi there I wand to develop a custom control in C# that is Tristate Checkbox, Shall I get any sample coe in C#?
hi, You may get help from this article:- http://www.codeproject.com/cs/miscctrl/TriStateTreeViewSubmissio.asp[^] regards, pubudu..
-
Hi there I wand to develop a custom control in C# that is Tristate Checkbox, Shall I get any sample coe in C#?
Hi! The
CheckBox
component in the FCL already has everything you need. Just set theThreeState
property to true and you're done, no need to re-invent the wheel! mav