Skip to main content

Hi!

I will ask the state of a Checkbox...

This will not be working:

if (checkBox1::IsChecked = true)

continue

end-if.

What is wrong?

 

Best Regards

Bernd


#WPFCheckboxIsChecked

Hi!

I will ask the state of a Checkbox...

This will not be working:

if (checkBox1::IsChecked = true)

continue

end-if.

What is wrong?

 

Best Regards

Bernd


#WPFCheckboxIsChecked

You need to include the Value property like:

           if checkbox1::IsChecked::Value = true
              set textBox1::Text to "checked"
          else
             set textBox1::Text to "not checked"
          end-if


Hi!

I will ask the state of a Checkbox...

This will not be working:

if (checkBox1::IsChecked = true)

continue

end-if.

What is wrong?

 

Best Regards

Bernd


#WPFCheckboxIsChecked

Thats it!

Many Thanks !!!