Winforms DataBind to Control's Visible Property

Posted by B Z on Stack Overflow See other posts from Stack Overflow or by B Z
Published on 2009-04-08T16:21:21Z Indexed on 2010/05/06 21:58 UTC
Read the original article Hit count: 313

Filed under:
|
|

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.

© Stack Overflow or respective owner

Related posts about winforms

Related posts about databinding