Binding Errors #4232
Answered
by
punker76
fredericoregateiro
asked this question in
Q&A
Binding Errors
#4232
-
I'm getting a lot of binding errors, i'm not overriding any style of the datagrid Could this line hold the problem? |
Beta Was this translation helpful? Give feedback.
Answered by
punker76
Feb 9, 2022
Replies: 1 comment
-
The relative binding to the DataGridRow from a DataGridCell is the only way to do this, because the property is only available internal. internal DataGridRow RowOwner
{
get { return _owner; }
} As I can see, these binding errors (warnings) only occurs when the user set the visibility of the cell to collapse (hide). And the binding error level is set to warning. So maybe we can live with that... |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
fredericoregateiro
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The relative binding to the DataGridRow from a DataGridCell is the only way to do this, because the property is only available internal.
As I can see, these binding errors (warnings) only occurs when the user set the visibility of the cell to collapse (hide). And the binding error level is set to warning.
So maybe we can live with that...