iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
<Intersoft:UXDesktop x:Name="MyDesktop" Background="{x:Null}" TaskBar="{Binding ElementName=DesktopDock}">
<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">
<local:RainList/>
</Intersoft:UXWindow>
</Intersoft:UXDesktop>
<Intersoft:UXDesktopDock x:Name="DesktopDock"
Cursor="Hand"
BackgroundHeight="90"
MinimizeButtonGroup="groupSeparator"
AllowDropItem="True"
AllowReorderItem="True">
<Intersoft:UXDesktopDockButton Icon="Assets/Dock/jcxx.png"
Text="B"
AllowReorderItem="True"
AllowMove="True"
StackMode="GridStyle"
StackTotalDisplayItem="0"
StackGridMode="DynamicGrid">
<Intersoft:UXStackItem Text="A" Icon="Assets/Images/01.png" Command="Intersoft:WindowCommands.LaunchApplication" CommandTarget="{Binding ElementName=MyDesktop}" Cursor="Hand" CommandParameter="/aa.xaml"/>
<Intersoft:UXStackItem Icon="Assets/Images/02.png" Text="C" Command="Intersoft:WindowCommands.LaunchApplication" CommandTarget="{Binding ElementName=MyDesktop}" Cursor="Hand">
<Intersoft:UXStackItem.CommandParameter>
<Intersoft:WindowOptions ForceSingleInstance="True" ReactivateExistingInstance="True" Uri="/b.xaml"/>
</Intersoft:UXStackItem.CommandParameter>
</Intersoft:UXStackItem>
</Intersoft:UXDesktopDockButton>
</Intersoft:UXDesktopDock>
question is :when the page is onload,the picture in the node of "<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.
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.
<Grid x:Name="LayoutRoot"> <Intersoft:UXDesktopDock x:Name="DesktopDock" ...> <Intersoft:UXDesktopDockButton Icon="/Assets/Dock/pictures.png" Text="A" ...> <Intersoft:UXStackItem Text="B" Icon="/Assets/Images/2.jpg" Command="Intersoft:WindowCommands.LaunchApplication" CommandTarget="{Binding ElementName=MyDesktop}" Cursor="Hand"> <Intersoft:UXStackItem.CommandParameter> <Intersoft:WindowOptions ForceSingleInstance="True" ReactivateExistingInstance="True" Uri="/Views.UXWindow1"/> </Intersoft:UXStackItem.CommandParameter> </Intersoft:UXStackItem> </Intersoft:UXDesktopDockButton> </Intersoft:UXDesktopDock> <Intersoft:UXDesktop x:Name="MyDesktop" Background="{x:Null}" TaskBar="{Binding ElementName=DesktopDock}"> <Intersoft:UXWindow WindowStartupLocation="CenterOwner" ...> </Intersoft:UXWindow> </Intersoft:UXDesktop> </Grid>
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).
Hope this helps.
I was able to reproduce the issue on local end.Please give me more time in order to determine what may cause the issue.
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname