What are the main differences between these WPF controls?
And when I should use a ToolTip instead of Popup?
What are the main differences between these WPF controls? And when I should use
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A
ToolTipis a small pop-up window that appears when a user pauses the mouse pointer over an element; thePopupcontrol provides a way to display content in a separate window that floats over the current application window relative to a designated element or screen coordinate.A
Popupdoes not automatically open when the mouse pointer moves over its parent object. If you want aPopupto automatically open, use theToolTiporToolTipServiceclass.For more information see: ToolTip overview and Popup overview.