<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 Forums - Tech Off - Keeping tooltip open WPF C#</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Forums/rss"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 Forums - Tech Off - Keeping tooltip open WPF C#</title>
		<link>http://channel9.msdn.com/Forums</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Forums</link>
	<language>en</language>
	<pubDate>Wed, 19 Jun 2013 13:02:22 GMT</pubDate>
	<lastBuildDate>Wed, 19 Jun 2013 13:02:22 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>5</c9:totalResults>
	<c9:pageCount>-5</c9:pageCount>
	<c9:pageSize>-1</c9:pageSize>
	<item>
		<title>Tech Off - Keeping tooltip open WPF C#</title>
		<description><![CDATA[<p>Hello all,</p>
<p>I want to create a tooltip like Word 2007 shows when you select text.<br /><a href="http://img167.imageshack.us/img167/9809/floatiefq4.gif">http://img167.imageshack.us/img167/9809/floatiefq4.gif</a></p>
<p>I have no problem with putting buttons etc in the tooltip but the tooltip closes when I navigate with my mouse to over the tooltip before I can click&nbsp;any buttons.<br />How can I keep the tooltip open when I am hovering over it?</p>
<p>Thanks in advance. </p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/260121-Keeping-tooltip-open-WPF-C/260121#260121</link>
		<pubDate>Wed, 09 Jan 2008 12:37:04 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/260121-Keeping-tooltip-open-WPF-C/260121#260121</guid>
		<dc:creator>BrunoW</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/BrunoW/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Keeping tooltip open WPF C#</title>
		<description><![CDATA[<p>This is actually no tooltip. It is a toolbar that is shown when you hover over it. This is very different! The tooltip is designed not to stand in your way: means if you move your mouse over it it's gone because you probably want to click something behind
 it...</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/260121-Keeping-tooltip-open-WPF-C/d4021716043c428090d39dfa00bbdb2e#d4021716043c428090d39dfa00bbdb2e</link>
		<pubDate>Wed, 09 Jan 2008 13:33:55 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/260121-Keeping-tooltip-open-WPF-C/d4021716043c428090d39dfa00bbdb2e#d4021716043c428090d39dfa00bbdb2e</guid>
		<dc:creator>Christian Liensberger</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/littleguru/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Keeping tooltip open WPF C#</title>
		<description><![CDATA[<p>Try using the popup control instead of the tooltip.&nbsp; It'll let you control when the menu is displayed.&nbsp; You could use an event&nbsp;trigger to open the popup, and have the popup close automatically when the user clicks outside of the popup.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/260121-Keeping-tooltip-open-WPF-C/67274e395eb14c499f4c9dfa00bbdbcd#67274e395eb14c499f4c9dfa00bbdbcd</link>
		<pubDate>Wed, 09 Jan 2008 13:46:18 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/260121-Keeping-tooltip-open-WPF-C/67274e395eb14c499f4c9dfa00bbdbcd#67274e395eb14c499f4c9dfa00bbdbcd</guid>
		<dc:creator>jgilkey</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/jgilkey/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Keeping tooltip open WPF C#</title>
		<description><![CDATA[<p><font face="Verdana">ToolTip is hosted inside a Popup which in turn is rendered in a separate HwndSource, you should be able to mimic the ToolTip behaviour using Poup, and set its StaysOpen property to true as the following XAML illustrates:<br /></font>
<pre class="code"><font face="Verdana"><span>&lt;</span><span>Page </span><span>xmlns</span><span>=&quot;<a href="http://schemas.microsoft.com/winfx/2006/xaml/presentation&quot;">http&#58;&#47;&#47;schemas.microsoft.com&#47;winfx&#47;2006&#47;xaml&#47;presentation&#34;</a><br>      </span><span>xmlns:x</span><span>=&quot;<a href="http://schemas.microsoft.com/winfx/2006/xaml&quot;>">http&#58;&#47;&#47;schemas.microsoft.com&#47;winfx&#47;2006&#47;xaml&#34;&#62;</a><br>    &lt;</span><span>Button </span><span>Width</span><span>=&quot;120&quot; </span><span>Height</span><span>=&quot;30&quot; </span><span>Name</span><span>=&quot;btn&quot;&gt;    <br>            &lt;</span><span>Popup </span><span>IsOpen</span><span>=&quot;True&quot; </span><span>StaysOpen</span><span>=&quot;True&quot; </span><span>PlacementTarget</span><span>=&quot;{Binding ElementName=btn}&quot; </span><span>Placement</span><span>=&quot;Bottom&quot;&gt;<br>                &lt;</span><span>Button </span><span>Width</span><span>=&quot;120&quot; </span><span>Height</span><span>=&quot;30&quot; </span><span>Content</span><span>=&quot;Button In ToolTip&quot;/&gt;<br>            &lt;/</span><span>Popup</span><span>&gt;<br>    &lt;/</span><span>Button</span><span>&gt;<br>&lt;/</span><span>Page</span><span>&gt;</span></font></pre>
<font face="Verdana"><br /></font></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/260121-Keeping-tooltip-open-WPF-C/6c2859873f7d42e0a5869dfa00bbdc51#6c2859873f7d42e0a5869dfa00bbdc51</link>
		<pubDate>Wed, 09 Jan 2008 14:04:24 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/260121-Keeping-tooltip-open-WPF-C/6c2859873f7d42e0a5869dfa00bbdc51#6c2859873f7d42e0a5869dfa00bbdc51</guid>
		<dc:creator>Zhou Yong</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/footballism/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - Keeping tooltip open WPF C#</title>
		<description><![CDATA[<p>Thanks! I got it to work with the Popup class.</p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/260121-Keeping-tooltip-open-WPF-C/a80e9c10d94e411883749dfa00bbdccd#a80e9c10d94e411883749dfa00bbdccd</link>
		<pubDate>Wed, 09 Jan 2008 15:44:57 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/260121-Keeping-tooltip-open-WPF-C/a80e9c10d94e411883749dfa00bbdccd#a80e9c10d94e411883749dfa00bbdccd</guid>
		<dc:creator>BrunoW</dc:creator>
		<slash:comments>5</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/BrunoW/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>