I am currently working on a screen (C#/WPF) which uses a Popup control as a tooltip in order to provide additional functionality (such as copy & paste of data). The popup shows when hover of a cell in grid view. What I am trying to accomplish is to show the popup directly below the cell and allowing it to expand towards the right but not past the edge of the screen.
So far I have been able to get it to show below the cell and be the exact width of the cell. However, I am not able to get it to expand to the right of the screen. All my attempts have either resulted in nothing or the popup expanding the full width of the screen.
I have been trying to use the SystemParameters
properties in combination with the element.PointToScreen(new Point(0, 0))
without success. I have also tried some manipulation with PresentationSource.FromVisual(gridCell)
and get target points using source.CompositionTarget.TransformFromDevice.Transform()
, again without success.
What is the simplest way to show a Popup control that is located at a specific point and expands (rightward) to the edge of the screen? TIA
I think, all you need - popup position correction. You could define custom behavior. I solved similar problem and want to share my code with you. I believe you can change it in order to get necessary behavior.