I am trying to find a solution to this issue since 10 days and nothing.
I need to be able to create a Checkedlistbox form and to set "OwnerDrawFixed" to that, but it always stays at "Normal".
Why?
$checkedListBox = New-Object System.Windows.Forms.CheckedListBox
$checkedListBox.DrawMode = [System.Windows.Forms.DrawMode]::OwnerDrawFixed
$checkedListBox.DrawMode
Normal
The reason is ask that is because I really want to find a solution to my issue :
Add checkboxes to Listbox with Powershell Windows Forms
Thanks 1000x in advance if you have ideas.