Hello,
How would I bind to my ToolWindow's IsFloating attribute?
I currently have this code:
<docking:DockSite x:Name="outerDockSite">
<docking:ToolWindowContainer x:Name="outerToolWindowContainer">
<docking:ToolWindow x:Name="outerToolWindow" IsFloating={binding IsToolWindowFloating, mode=OneWayToSource}>
<Grid/>
but IsToolWindowFloating is not getting updated even though I am seeing the ToolWindow IsFloating is changing in the visual tree properties.
Note: out of all the binding in my ViewModel this is the only one not working. I don't think the problem is on the .cs implementation of IsToolWindowFloating.
Thanks and Best!
JP
[Modified 4 years ago]