vote up 1 vote down star

WinForms, .NetFramework 3.5

Are there any known issues when databinding to a control's visible property?

The control is always NOT visible regardless of what my property is.

Public ReadOnly Property IsRibbonCategory() As Boolean
    Get
    	Return True
    End Get
End Property

I tried the control's text property and other properties and they seem to work correctly.

I am trying to set a Panel's visible property.

Using a BindingSource.

Thx in advance.

flag

how are you binding? with a bindingsource control or declaritively? – matt Apr 8 at 17:05
@matt - bindingsource – B Z Apr 8 at 17:57

2 Answers

vote up 1 vote down check

Workaround: Set the Visible property on the BindingComplete event.

I had same issue setting a label's Visible property - always stays false, even though setting the Enabled property works fine.

link|flag
vote up 0 vote down

Things to check:

  • Be sure you've instantiated the class that has the IsRibbonCategory property
  • Did you set the datasource of property of the binding source to the instance of the class
  • The datasource update mode should be on "on validation"
  • Make sure you didn't set the visible property manually to false on the control

Hope that helps. Can you post more code?

link|flag
I have checked all of those, but no dice. One question, have you tried databinding to visible property and it worked? – B Z Apr 9 at 13:55
Yes. VS 2008/Winforms. What event do you use to set the datasource of the bindingsource control? – matt Apr 9 at 17:27
The form's constructor. – B Z Apr 9 at 23:20
Have you tried calling bindingsource.CurrencyManager.Refresh in the form's load event? – matt Apr 10 at 12:33
no, I will give that a shot. – B Z Apr 10 at 14:02
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.