<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>Silverlight FloatableWindow</title><link>http://floatablewindow.codeplex.com/project/feeds/rss</link><description>A refactoring of Silverlight&amp;#39;s ChildWindow control, to enable both modal and non-modal uses, but retain templating and functionality of what the ChildWindow provides.  Also provides start positioning and resizing capabilities.</description><item><title>New Post: Hide Close Button Without Hiding Drag Bar</title><link>http://floatablewindow.codeplex.com/discussions/239986</link><description>&lt;div style="line-height: normal;"&gt;Bump. Any fixes since two years ago?&lt;br /&gt;
&lt;/div&gt;</description><author>djenriquez</author><pubDate>Wed, 13 Feb 2013 18:48:10 GMT</pubDate><guid isPermaLink="false">New Post: Hide Close Button Without Hiding Drag Bar 20130213064810P</guid></item><item><title>Source code checked in, #81799</title><link>http://floatablewindow.codeplex.com/SourceControl/changeset/changes/81799</link><description>Upgrade&amp;#58; New Version of LabDefaultTemplate.xaml. To upgrade your build definitions, please visit the following link&amp;#58; http&amp;#58;&amp;#47;&amp;#47;go.microsoft.com&amp;#47;fwlink&amp;#47;&amp;#63;LinkId&amp;#61;254563</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 21:57:23 GMT</pubDate><guid isPermaLink="false">Source code checked in, #81799 20121001095723P</guid></item><item><title>Source code checked in, #81798</title><link>http://floatablewindow.codeplex.com/SourceControl/changeset/changes/81798</link><description>Checked in by server upgrade</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 21:51:05 GMT</pubDate><guid isPermaLink="false">Source code checked in, #81798 20121001095105P</guid></item><item><title>New Post: Template for VS2010</title><link>http://floatablewindow.codeplex.com/discussions/283832</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;please reply , it imp&lt;/p&gt;&lt;/div&gt;</description><author>adkunal</author><pubDate>Fri, 14 Sep 2012 11:06:22 GMT</pubDate><guid isPermaLink="false">New Post: Template for VS2010 20120914110622A</guid></item><item><title>New Post: Template for VS2010</title><link>http://floatablewindow.codeplex.com/discussions/283832</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I am not able to process this as child window, please could you send me a code in VB language for silverliglight float window.&lt;/p&gt;&lt;/div&gt;</description><author>adkunal</author><pubDate>Fri, 14 Sep 2012 11:06:06 GMT</pubDate><guid isPermaLink="false">New Post: Template for VS2010 20120914110606A</guid></item><item><title>Patch Uploaded: #12759</title><link>http://floatablewindow.codeplex.com/SourceControl/list/patches</link><description>
&lt;p&gt;&lt;a href='http://www.codeplex.com/site/users/view/ToniLa'&gt;ToniLa&lt;/a&gt; has uploaded a patch.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;Fixed HorizontalOffset and VerticalOffset functionality for non-modal dialogs.&lt;br /&gt;Removed modal dialog funtions, since they do not work anymore.&lt;br /&gt;&lt;br /&gt;Included Silverlight 5 compatible sample project that shows how to use Horizontal and Vertical offsets to maintain dialog position, height and width when dialog is closed and recreated.&lt;br /&gt;&lt;/p&gt;</description><author>ToniLa</author><pubDate>Thu, 23 Aug 2012 10:33:08 GMT</pubDate><guid isPermaLink="false">Patch Uploaded: #12759 20120823103308A</guid></item><item><title>New Post: Vertiacal/Horizontal offset problem when mouve window</title><link>http://floatablewindow.codeplex.com/discussions/279618</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Im working on this myself. I discovered (using the source) that VerticalOffset/HorizontalOffset has no effect unless the window is closed/shown. To reposition it relative to the parent Canvas you need to do this:&lt;/p&gt;
&lt;p&gt;
&lt;div style="color: black; background-color: white;"&gt;
&lt;pre&gt;&lt;span style="color: blue;"&gt;public&lt;/span&gt; &lt;span style="color: blue;"&gt;void&lt;/span&gt; MoveTo(Point point)
{
    &lt;span style="color: blue;"&gt;this&lt;/span&gt;.VerticalOffset = point.Y;
    &lt;span style="color: blue;"&gt;this&lt;/span&gt;.HorizontalOffset = point.X;
    &lt;span style="color: blue;"&gt;this&lt;/span&gt;.SetValue(Canvas.TopProperty, _verticalOffset);
    &lt;span style="color: blue;"&gt;this&lt;/span&gt;.SetValue(Canvas.LeftProperty, _horizontalOffset);    
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;This then has a problem where if you drag the floatable window then call MoveTo there is an offset (because of the renderTransform applied to the ContentRoot. To workaround this, I modified the source for Chrome_MouseMove and Chrome_MouseDown. Note this only works for modeless dialogs as we are using the Canvas property not setting the position of the childwindow.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;
&lt;div style="color: black; background-color: white;"&gt;
&lt;pre&gt;&lt;span style="color: gray;"&gt;///&lt;/span&gt; &lt;span style="color: gray;"&gt;&amp;lt;summary&amp;gt;&lt;/span&gt;
        &lt;span style="color: gray;"&gt;///&lt;/span&gt;&lt;span style="color: green;"&gt; Executed when mouse left button is down on the chrome.&lt;/span&gt;
        &lt;span style="color: gray;"&gt;///&lt;/span&gt; &lt;span style="color: gray;"&gt;&amp;lt;/summary&amp;gt;&lt;/span&gt;
        &lt;span style="color: gray;"&gt;///&lt;/span&gt; &lt;span style="color: gray;"&gt;&amp;lt;param name="sender"&amp;gt;&lt;/span&gt;&lt;span style="color: green;"&gt;Sender object.&amp;lt;/param&amp;gt;&lt;/span&gt;
        &lt;span style="color: gray;"&gt;///&lt;/span&gt; &lt;span style="color: gray;"&gt;&amp;lt;param name="e"&amp;gt;&lt;/span&gt;&lt;span style="color: green;"&gt;Mouse button event args.&amp;lt;/param&amp;gt;&lt;/span&gt;
        &lt;span style="color: blue;"&gt;private&lt;/span&gt; &lt;span style="color: blue;"&gt;void&lt;/span&gt; Chrome_MouseLeftButtonDown(&lt;span style="color: blue;"&gt;object&lt;/span&gt; sender, MouseButtonEventArgs e)
        {
            &lt;span style="color: blue;"&gt;if&lt;/span&gt; (&lt;span style="color: blue;"&gt;this&lt;/span&gt;._chrome != &lt;span style="color: blue;"&gt;null&lt;/span&gt;)
            {
                e.Handled = &lt;span style="color: blue;"&gt;true&lt;/span&gt;;

                &lt;span style="color: blue;"&gt;if&lt;/span&gt; (&lt;span style="color: blue;"&gt;this&lt;/span&gt;.CloseButton != &lt;span style="color: blue;"&gt;null&lt;/span&gt; &amp;amp;&amp;amp; !&lt;span style="color: blue;"&gt;this&lt;/span&gt;.CloseButton.IsTabStop)
                {
                    &lt;span style="color: blue;"&gt;this&lt;/span&gt;.CloseButton.IsTabStop = &lt;span style="color: blue;"&gt;true&lt;/span&gt;;
                    &lt;span style="color: blue;"&gt;try&lt;/span&gt;
                    {
                        &lt;span style="color: blue;"&gt;this&lt;/span&gt;.Focus();
                    }
                    &lt;span style="color: blue;"&gt;finally&lt;/span&gt;
                    {
                        &lt;span style="color: blue;"&gt;this&lt;/span&gt;.CloseButton.IsTabStop = &lt;span style="color: blue;"&gt;false&lt;/span&gt;;
                    }
                }
                &lt;span style="color: blue;"&gt;else&lt;/span&gt;
                {
                    &lt;span style="color: blue;"&gt;this&lt;/span&gt;.Focus();
                }
                &lt;span style="color: blue;"&gt;this&lt;/span&gt;._chrome.CaptureMouse();
                &lt;span style="color: blue;"&gt;this&lt;/span&gt;._isMouseCaptured = &lt;span style="color: blue;"&gt;true&lt;/span&gt;;

                &lt;span style="color: blue;"&gt;if&lt;/span&gt; (Application.Current.RootVisual == &lt;span style="color: blue;"&gt;null&lt;/span&gt;)
                    &lt;span style="color: blue;"&gt;return&lt;/span&gt;;

                &lt;span style="color: blue;"&gt;this&lt;/span&gt;._clickPoint = e.GetPosition(Application.Current.RootVisual);
                &lt;span style="color: blue;"&gt;this&lt;/span&gt;.startOffset = &lt;span style="color: blue;"&gt;new&lt;/span&gt; Point(_horizontalOffset, _verticalOffset);
            }
        }

        &lt;span style="color: gray;"&gt;///&lt;/span&gt; &lt;span style="color: gray;"&gt;&amp;lt;summary&amp;gt;&lt;/span&gt;
        &lt;span style="color: gray;"&gt;///&lt;/span&gt;&lt;span style="color: green;"&gt; Executed when mouse moves on the chrome.&lt;/span&gt;
        &lt;span style="color: gray;"&gt;///&lt;/span&gt; &lt;span style="color: gray;"&gt;&amp;lt;/summary&amp;gt;&lt;/span&gt;
        &lt;span style="color: gray;"&gt;///&lt;/span&gt; &lt;span style="color: gray;"&gt;&amp;lt;param name="sender"&amp;gt;&lt;/span&gt;&lt;span style="color: green;"&gt;Sender object.&amp;lt;/param&amp;gt;&lt;/span&gt;
        &lt;span style="color: gray;"&gt;///&lt;/span&gt; &lt;span style="color: gray;"&gt;&amp;lt;param name="e"&amp;gt;&lt;/span&gt;&lt;span style="color: green;"&gt;Mouse event args.&amp;lt;/param&amp;gt;&lt;/span&gt;
        &lt;span style="color: blue;"&gt;private&lt;/span&gt; &lt;span style="color: blue;"&gt;void&lt;/span&gt; Chrome_MouseMove(&lt;span style="color: blue;"&gt;object&lt;/span&gt; sender, MouseEventArgs e)
        {
            &lt;span style="color: blue;"&gt;if&lt;/span&gt; (&lt;span style="color: blue;"&gt;this&lt;/span&gt;._isMouseCaptured &amp;amp;&amp;amp; &lt;span style="color: blue;"&gt;this&lt;/span&gt;.ContentRoot != &lt;span style="color: blue;"&gt;null&lt;/span&gt;)
            {
                &lt;span style="color: blue;"&gt;if&lt;/span&gt; (Application.Current.RootVisual == &lt;span style="color: blue;"&gt;null&lt;/span&gt;)
                    &lt;span style="color: blue;"&gt;return&lt;/span&gt;;

                &lt;span style="color: green;"&gt;// If the child window is dragged out of the page, return&lt;/span&gt;
                &lt;span style="color: blue;"&gt;if&lt;/span&gt; (Application.Current != &lt;span style="color: blue;"&gt;null&lt;/span&gt; &amp;amp;&amp;amp; Application.Current.RootVisual != &lt;span style="color: blue;"&gt;null&lt;/span&gt; &amp;amp;&amp;amp;
                    (e.GetPosition(Application.Current.RootVisual).X &amp;lt; 0 || e.GetPosition(Application.Current.RootVisual).Y &amp;lt; 0))
                {
                    &lt;span style="color: blue;"&gt;return&lt;/span&gt;;
                }

                &lt;span style="color: blue;"&gt;var&lt;/span&gt; currentPos = e.GetPosition(Application.Current.RootVisual);

                Debug.WriteLine(&lt;span style="color: #a31515;"&gt;"Click: x={0:0.0},y={1:0.0}\tPos: x={2:0.0},y={3:0.0}"&lt;/span&gt;,
                    &lt;span style="color: blue;"&gt;this&lt;/span&gt;._clickPoint.X,
                    &lt;span style="color: blue;"&gt;this&lt;/span&gt;._clickPoint.Y,
                    currentPos.X,
                    currentPos.Y);
                
                _horizontalOffset = (currentPos.X - &lt;span style="color: blue;"&gt;this&lt;/span&gt;._clickPoint.X) + startOffset.X;
                _verticalOffset = (currentPos.Y - &lt;span style="color: blue;"&gt;this&lt;/span&gt;._clickPoint.Y) + startOffset.Y;

                &lt;span style="color: blue;"&gt;this&lt;/span&gt;.SetValue(Canvas.TopProperty, _verticalOffset);
                &lt;span style="color: blue;"&gt;this&lt;/span&gt;.SetValue(Canvas.LeftProperty, _horizontalOffset);            
            }
        }
&lt;/pre&gt;
&lt;/div&gt;
&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>andyb1979</author><pubDate>Wed, 15 Aug 2012 16:04:31 GMT</pubDate><guid isPermaLink="false">New Post: Vertiacal/Horizontal offset problem when mouve window 20120815040431P</guid></item><item><title>Commented Issue: Flashes on Show [5399]</title><link>http://floatablewindow.codeplex.com/workitem/5399</link><description>The modeless window flashes momentarily before running the open transition. Sometimes I don&amp;#39;t see the flash the first time the window is opened, but I always see it subsequently.&lt;br /&gt;Comments: ** Comment from web user: kevindpath ** &lt;p&gt;This is the same issue as Work Item 9195. I found a solution that worked for me and posted it there.&lt;/p&gt;</description><author>kevindpath</author><pubDate>Thu, 19 Jul 2012 20:54:51 GMT</pubDate><guid isPermaLink="false">Commented Issue: Flashes on Show [5399] 20120719085451P</guid></item><item><title>Commented Issue: Blinking of the floatable window [9195]</title><link>http://floatablewindow.codeplex.com/workitem/9195</link><description>Hi, thanks for this control. I have a problem that was already described but there was no reply to it. When I call Show&amp;#40;&amp;#41; for the FloatableWindow sometimes it appears smoothly but sometimes you can see a part of the window that appears and disappears very quickly before the dialog will be shown. How can I fix that&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: kevindpath ** &lt;p&gt;I was getting this also, but I figured out a change that seems to work for me. The problem seemed to be that the window was being shown before the storyboard animation even started. I fixed it by setting the Opacity to 0 in the style, but setting it back to 1 immediately before the GoToState command that launched the storyboard.&lt;/p&gt;&lt;p&gt;So in generic.xaml, I added this Opacity line&amp;#58;&lt;/p&gt;&lt;p&gt;        &amp;#60;Setter Property&amp;#61;&amp;#34;BorderThickness&amp;#34; Value&amp;#61;&amp;#34;1&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;        &amp;#60;Setter Property&amp;#61;&amp;#34;Opacity&amp;#34; Value&amp;#61;&amp;#34;0&amp;#34;&amp;#47;&amp;#62;&lt;/p&gt;&lt;p&gt;And in FloatableWindow.cs I added this Opacity line&amp;#58;&lt;/p&gt;&lt;p&gt;                this.Opacity &amp;#61; 1&amp;#59;&lt;br /&gt;                VisualStateManager.GoToState&amp;#40;this, VSMSTATE_StateOpen, true&amp;#41;&amp;#59;&lt;br /&gt;&lt;/p&gt;</description><author>kevindpath</author><pubDate>Thu, 19 Jul 2012 20:46:42 GMT</pubDate><guid isPermaLink="false">Commented Issue: Blinking of the floatable window [9195] 20120719084642P</guid></item><item><title>Created Issue: Implement nice features of FloatingWindow [12267]</title><link>http://floatablewindow.codeplex.com/workitem/12267</link><description>FloatingWindow was inspired by FloatableWindow but seems to have grown to be more advanced&amp;#58;&lt;br /&gt;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;jevgenijpankov.heliocode.com&amp;#47;articles&amp;#47;FloatingWindow.aspx&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;jevgenijpankov.heliocode.com&amp;#47;articles&amp;#47;FloatingWindowDoc.aspx&lt;br /&gt;&lt;br /&gt;http&amp;#58;&amp;#47;&amp;#47;jevgenijpankov.heliocode.com&amp;#47;demo&amp;#47;FloatingWindowDemo.html&lt;br /&gt;</description><author>Birbilis</author><pubDate>Sun, 17 Jun 2012 10:42:37 GMT</pubDate><guid isPermaLink="false">Created Issue: Implement nice features of FloatingWindow [12267] 20120617104237A</guid></item><item><title>New Post: Can't publish any more</title><link>http://floatablewindow.codeplex.com/discussions/286196</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;was there a date or some trigger in 2012, suddenly I can't publish.. i always get this error.&lt;/p&gt;
&lt;p&gt;Error&lt;span&gt; &lt;/span&gt;1&lt;span&gt; &lt;/span&gt;Copying file ClientBin\FloatableWindow.zip to obj\Debug\Package\PackageTmp\ClientBin\FloatableWindow.zip failed. Could not find file 'ClientBin\FloatableWindow.zip'.&lt;span&gt;
&lt;/span&gt;0&lt;span&gt; &lt;/span&gt;0&lt;span&gt; &lt;/span&gt;PetroWEB.Navigator.Application.Web&lt;/p&gt;
&lt;/div&gt;</description><author>caseynshan</author><pubDate>Sun, 15 Jan 2012 14:28:03 GMT</pubDate><guid isPermaLink="false">New Post: Can't publish any more 20120115022803P</guid></item><item><title>New Post: Template for VS2010</title><link>http://floatablewindow.codeplex.com/discussions/283832</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;OK. Here is what I did.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Added a new item to the project using ChildWindow template&lt;/li&gt;
&lt;li&gt;Referenced the Flotablewindow.dll in the project and the XAML.&lt;/li&gt;
&lt;li&gt;Added:&amp;nbsp;xmlns:windows="clr-namespace:System.Windows.Controls;assembly=FloatableWindow"&lt;/li&gt;
&lt;li&gt;In xaml: changed &amp;lt;sdk:Childwindow&amp;gt; to &amp;lt;windows:FlotableWindow&amp;gt;&lt;/li&gt;
&lt;li&gt;My FlotableWindow is ready for use.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Many thanks Tim! Now I can resize my childwindow.&lt;/p&gt;&lt;/div&gt;</description><author>shakyad</author><pubDate>Thu, 29 Dec 2011 04:51:18 GMT</pubDate><guid isPermaLink="false">New Post: Template for VS2010 20111229045118A</guid></item><item><title>New Post: Template for VS2010</title><link>http://floatablewindow.codeplex.com/discussions/283832</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I downloaded the compiled version 4. How do I get the template in VS2010 like ChildWindow?&lt;/p&gt;
&lt;/div&gt;</description><author>shakyad</author><pubDate>Thu, 22 Dec 2011 01:53:49 GMT</pubDate><guid isPermaLink="false">New Post: Template for VS2010 20111222015349A</guid></item><item><title>Commented Issue: centered sizing == teh suck [10120]</title><link>http://floatablewindow.codeplex.com/workitem/10120</link><description>when did this get added, and how can it be removed &amp;#40;easily&amp;#41;, or switched back to default&amp;#63; &lt;br /&gt;also the side-sizing-grips are gone&amp;#63;&lt;br /&gt;&lt;br /&gt;sooo annoying. &lt;br /&gt;what other window control do you know that expands from the center out&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: JoeBrockhaus ** &lt;p&gt;oh nice. &lt;/p&gt;&lt;p&gt;that works well for the stretching, but then the window opens Top &amp;#43; Left. &lt;br /&gt;I suppose that should be expected .. Setting them to Top &amp;#43; Left after OnOpened&amp;#40;&amp;#41; just moves the window back to the topleft.&lt;/p&gt;&lt;p&gt;I tried forcing the position but this makes the overlay bug out. &lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><author>JoeBrockhaus</author><pubDate>Wed, 07 Dec 2011 16:17:53 GMT</pubDate><guid isPermaLink="false">Commented Issue: centered sizing == teh suck [10120] 20111207041753P</guid></item><item><title>Commented Issue: centered sizing == teh suck [10120]</title><link>http://floatablewindow.codeplex.com/workitem/10120</link><description>when did this get added, and how can it be removed &amp;#40;easily&amp;#41;, or switched back to default&amp;#63; &lt;br /&gt;also the side-sizing-grips are gone&amp;#63;&lt;br /&gt;&lt;br /&gt;sooo annoying. &lt;br /&gt;what other window control do you know that expands from the center out&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: jogibear9988 ** &lt;p&gt;Add HorizontalAlignment&amp;#61;&amp;#34;Left&amp;#34; and VerticalAlignment&amp;#61;&amp;#34;Top&amp;#34; to the Floating Window and wit will work&lt;/p&gt;</description><author>jogibear9988</author><pubDate>Wed, 07 Dec 2011 08:23:50 GMT</pubDate><guid isPermaLink="false">Commented Issue: centered sizing == teh suck [10120] 20111207082350A</guid></item><item><title>Commented Issue: Cannot resolve TargetName x [10163]</title><link>http://floatablewindow.codeplex.com/workitem/10163</link><description>After open a floating dialog window and the trying to open a Built-In ChildWindow you get the following error&amp;#58; InvalidOperationException was unhandled by user code &amp;#58; Cannot resolve TargetName x&lt;br /&gt;Comments: ** Comment from web user: lsmventure ** &lt;p&gt;This is an intermittent problem we have experienced too. The &amp;#39;X&amp;#39; relates to the name of the path object responsible for creating the close button. The State Manager is firing a state which in turn is trying to manipulate the path only to find it does not exist. Looking at the template for a child window, the object, &amp;#39;X&amp;#39;, clearly does exist in the logical tree so this must be a visual tree issue where the object is referenced before it has been rendered.&lt;br /&gt;However we have been unsuccessful in our attempts to fix this issue by removing all visual states that relate to &amp;#39;X&amp;#39; - the error still occurs. &lt;br /&gt;Our only resolution is to catch the unhandled exception in the app code behind and handle it&amp;#58;&lt;/p&gt;&lt;p&gt;if &amp;#40;&amp;#33;System.Diagnostics.Debugger.IsAttached&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                e.Handled &amp;#61; true&amp;#59;&lt;br /&gt;                if &amp;#40;&amp;#33;e.ExceptionObject.Message.Contains&amp;#40;&amp;#34;TargetName X&amp;#34;&amp;#41;&amp;#41;&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    Deployment.Current.Dispatcher.BeginInvoke&amp;#40;delegate &amp;#123; ReportErrorToDOM&amp;#40;e&amp;#41;&amp;#59; &amp;#125;&amp;#41;&amp;#59;&lt;br /&gt;                &amp;#125;&lt;br /&gt;            &amp;#125;&lt;/p&gt;</description><author>lsmventure</author><pubDate>Thu, 17 Nov 2011 10:46:13 GMT</pubDate><guid isPermaLink="false">Commented Issue: Cannot resolve TargetName x [10163] 20111117104613A</guid></item><item><title>New Post: Vertiacal/Horizontal offset problem when mouve window</title><link>http://floatablewindow.codeplex.com/discussions/279618</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi !&lt;br&gt;
&lt;br&gt;
I am working with this useful extension, but i have a problem which i think you can resolve.&lt;/p&gt;
&lt;p&gt;When i start (first time i show) a floatableWindow, the verticaloffset (and horizontal) i put, fit OK.&lt;/p&gt;
&lt;p&gt;But, if I show the Fwindow, i mouve it (with mouse). When i put a new vertical/horizontal offset, and RE-Show the window, it is showed in the same place that i have mouved with the mouse. It doesnt fit with the new vertical/horizontal offset y have set.&lt;/p&gt;
&lt;p&gt;To sum up:&lt;/p&gt;
&lt;p&gt;my application, show 4 FWindows, in the places i have set, in a square shape, after this, you can move one (or more) of them, and i have put a button to REorganice the 4 FWindow in the original square.&lt;/p&gt;
&lt;p&gt;but i cant due to the FWindows always go to the last place where it was mouved by the mouse.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;/div&gt;</description><author>avatarrr</author><pubDate>Wed, 16 Nov 2011 10:31:26 GMT</pubDate><guid isPermaLink="false">New Post: Vertiacal/Horizontal offset problem when mouve window 20111116103126A</guid></item><item><title>New Post: Prevent dragging outside the container (non-modal mode)</title><link>http://floatablewindow.codeplex.com/discussions/279466</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi!&lt;/p&gt;
&lt;p&gt;Is it possible to prevent dragging of FloatableWindow outside the specified container (ParentLayoutRoot is Grid) in non-modal mode? I want it to prevent hinding of window parts under the container border.&lt;/p&gt;
&lt;p&gt;Thanks in advance!&lt;/p&gt;
&lt;/div&gt;</description><author>farsight</author><pubDate>Tue, 15 Nov 2011 06:01:51 GMT</pubDate><guid isPermaLink="false">New Post: Prevent dragging outside the container (non-modal mode) 20111115060151A</guid></item><item><title>Created Issue: Memory leak on Lost Focus [11368]</title><link>http://floatablewindow.codeplex.com/workitem/11368</link><description>When  ChildWindow loses several time focus in ChildWindow_LostFocus method, application subscribe several  times on Application.Current.RootVisual.GotFocus. &lt;br /&gt;To  improve this simply write next code  before Application.Current.RootVisual.GotFocus subscription&amp;#58;&lt;br /&gt;Application.Current.RootVisual.GotFocus -&amp;#61; new RoutedEventHandler&amp;#40;this.RootVisual_GotFocus&amp;#41;&amp;#59;&lt;br /&gt;So method ChildWindow_LostFocus will be&amp;#58;&lt;br /&gt; private void ChildWindow_LostFocus&amp;#40;object sender, RoutedEventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            if &amp;#40;this.IsOpen &amp;#38;&amp;#38; Application.Current &amp;#33;&amp;#61; null &amp;#38;&amp;#38; Application.Current.RootVisual &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                this.InteractionState &amp;#61; WindowInteractionState.BlockedByModalWindow&amp;#59;&lt;br /&gt;                Application.Current.RootVisual.GotFocus -&amp;#61; new RoutedEventHandler&amp;#40;this.RootVisual_GotFocus&amp;#41;&amp;#59;&lt;br /&gt;                Application.Current.RootVisual.GotFocus &amp;#43;&amp;#61; new RoutedEventHandler&amp;#40;this.RootVisual_GotFocus&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;</description><author>Galen2000</author><pubDate>Fri, 21 Oct 2011 07:23:06 GMT</pubDate><guid isPermaLink="false">Created Issue: Memory leak on Lost Focus [11368] 20111021072306A</guid></item><item><title>Patch Uploaded: #10143</title><link>http://floatablewindow.codeplex.com/SourceControl/list/patches</link><description>
&lt;p&gt;&lt;a href='http://www.codeplex.com/site/users/view/sip_slava'&gt;sip_slava&lt;/a&gt; has uploaded a patch.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Description:&lt;/b&gt;&lt;br /&gt;Resizer opacity can be overridden in a style.&lt;/p&gt;</description><author>sip_slava</author><pubDate>Tue, 09 Aug 2011 21:07:15 GMT</pubDate><guid isPermaLink="false">Patch Uploaded: #10143 20110809090715P</guid></item></channel></rss>