﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebGrid Enterprise - icons in uxwindow can not be triggered when page is onload!!!</title><link>http://www.intersoftsolutions.com/Community/WebGrid/jkhq/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>icons in uxwindow can not be triggered when page is onload!!!</title><link>http://www.intersoftsolutions.com/Community/WebGrid/jkhq/</link><pubDate>Fri, 07 Jan 2011 05:29:52 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Please try to swap the order of the controls. Put the UXDesktopDock on the upper line and then UXDesktop on the next line. The snippet should look like below.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;Grid x:Name="LayoutRoot"&amp;gt;
    &amp;lt;Intersoft:UXDesktopDock x:Name="DesktopDock" ...&amp;gt;
        &amp;lt;Intersoft:UXDesktopDockButton Icon="/Assets/Dock/pictures.png" Text="A" ...&amp;gt;
            &amp;lt;Intersoft:UXStackItem Text="B" Icon="/Assets/Images/2.jpg"
                                   Command="Intersoft:WindowCommands.LaunchApplication"
                                   CommandTarget="{Binding ElementName=MyDesktop}"
                                   Cursor="Hand"&amp;gt;
                &amp;lt;Intersoft:UXStackItem.CommandParameter&amp;gt;
                    &amp;lt;Intersoft:WindowOptions ForceSingleInstance="True"
                                             ReactivateExistingInstance="True"
                                             Uri="/Views.UXWindow1"/&amp;gt;
                &amp;lt;/Intersoft:UXStackItem.CommandParameter&amp;gt;
            &amp;lt;/Intersoft:UXStackItem&amp;gt;
        &amp;lt;/Intersoft:UXDesktopDockButton&amp;gt;
    &amp;lt;/Intersoft:UXDesktopDock&amp;gt;

    &amp;lt;Intersoft:UXDesktop x:Name="MyDesktop" Background="{x:Null}"
                         TaskBar="{Binding ElementName=DesktopDock}"&amp;gt;
        &amp;lt;Intersoft:UXWindow WindowStartupLocation="CenterOwner" ...&amp;gt;
        &amp;lt;/Intersoft:UXWindow&amp;gt;
    &amp;lt;/Intersoft:UXDesktop&amp;gt;
&amp;lt;/Grid&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;After checked by our developer team, they found that the issue was caused from the CommandTarget which is somehow cannot be found. This seems to be issue in Silverlight, in where our works (some code trigger the rendering earlier).&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>icons in uxwindow can not be triggered when page is onload!!!</title><link>http://www.intersoftsolutions.com/Community/WebGrid/jkhq/</link><pubDate>Thu, 06 Jan 2011 20:35:58 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt;"&gt;I was able to reproduce the issue on local end.&lt;br /&gt;Please give me more time in order to determine what may cause the issue.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>icons in uxwindow can not be triggered when page is onload!!!</title><link>http://www.intersoftsolutions.com/Community/WebGrid/jkhq/</link><pubDate>Wed, 05 Jan 2011 03:23:30 GMT</pubDate><dc:creator>jkh198711</dc:creator><description>&lt;p /&gt;
&lt;p&gt;&amp;lt;Intersoft:UXDesktop x:Name="MyDesktop" Background="{x:Null}" TaskBar="{Binding ElementName=DesktopDock}"&amp;gt;&lt;/p&gt;
&lt;p&gt;            &amp;lt;Intersoft:UXWindow WindowStartupLocation="CenterOwner" CornerRadius="5,5,0,0" Margin="10,60,0,0" Header="A" Width="320" Height="420"  Icon="Assets/Images/01.png" CanMaximize="False" CanResize="False" IsClientVisible="True" IsActive="True"&amp;gt;&lt;/p&gt;
&lt;p&gt;                &amp;lt;local:RainList/&amp;gt;&lt;/p&gt;
&lt;p&gt;            &amp;lt;/Intersoft:UXWindow&amp;gt;&lt;/p&gt;
&lt;p&gt;        &amp;lt;/Intersoft:UXDesktop&amp;gt;&lt;/p&gt;
&lt;p&gt;        &amp;lt;Intersoft:UXDesktopDock x:Name="DesktopDock"&lt;/p&gt;
&lt;p&gt;                                 Cursor="Hand" &lt;/p&gt;
&lt;p&gt;                                 BackgroundHeight="90" &lt;/p&gt;
&lt;p&gt;                                 MinimizeButtonGroup="groupSeparator" &lt;/p&gt;
&lt;p&gt;                                 AllowDropItem="True" &lt;/p&gt;
&lt;p&gt;                                 AllowReorderItem="True"&amp;gt;&lt;/p&gt;
&lt;p&gt;            &amp;lt;Intersoft:UXDesktopDockButton Icon="Assets/Dock/jcxx.png"  &lt;/p&gt;
&lt;p&gt;                                           Text="B" &lt;/p&gt;
&lt;p&gt;                                           AllowReorderItem="True"&lt;/p&gt;
&lt;p&gt;                                           AllowMove="True" &lt;/p&gt;
&lt;p&gt;                                           StackMode="GridStyle" &lt;/p&gt;
&lt;p&gt;                                           StackTotalDisplayItem="0"  &lt;/p&gt;
&lt;p&gt;                                           StackGridMode="DynamicGrid"&amp;gt;&lt;/p&gt;
&lt;p&gt;                &amp;lt;Intersoft:UXStackItem Text="A" Icon="Assets/Images/01.png" Command="Intersoft:WindowCommands.LaunchApplication" CommandTarget="{Binding ElementName=MyDesktop}" Cursor="Hand" CommandParameter="/aa.xaml"/&amp;gt;&lt;/p&gt;
&lt;p&gt;                &amp;lt;Intersoft:UXStackItem Icon="Assets/Images/02.png" Text="C" Command="Intersoft:WindowCommands.LaunchApplication" CommandTarget="{Binding ElementName=MyDesktop}" Cursor="Hand"&amp;gt;&lt;/p&gt;
&lt;p&gt;                    &amp;lt;Intersoft:UXStackItem.CommandParameter&amp;gt;&lt;/p&gt;
&lt;p&gt;                        &amp;lt;Intersoft:WindowOptions  ForceSingleInstance="True" ReactivateExistingInstance="True" Uri="/b.xaml"/&amp;gt;&lt;/p&gt;
&lt;p&gt;                    &amp;lt;/Intersoft:UXStackItem.CommandParameter&amp;gt;&lt;/p&gt;
&lt;p&gt;                &amp;lt;/Intersoft:UXStackItem&amp;gt;&lt;/p&gt;
&lt;p&gt;               &lt;/p&gt;
&lt;p&gt;            &amp;lt;/Intersoft:UXDesktopDockButton&amp;gt;&lt;/p&gt;
&lt;p&gt;        &amp;lt;/Intersoft:UXDesktopDock&amp;gt;&lt;/p&gt;
&lt;p&gt;question is :when the page is onload,the picture in the node of "&amp;lt;Intersoft:UXStackItem ", like " Icon="Assets/Images/01.png" cannot be clicked.only if the other icon in the dock is clicked and the form is minimized,the Icon"Assets/Images/01.png" can be clicked.&lt;/p&gt;
&lt;p /&gt;
&lt;div id="gt-res-content" class="almost_half_cell"&gt;&lt;div style="zoom: 1; " dir="ltr"&gt;
&lt;div id="gt-res-content" class="almost_half_cell"&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p /&gt;
&lt;p /&gt;</description></item></channel></rss>