﻿<?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 - ClientUI - UXStackButton problems on RightToLeft cultures</title><link>http://www.intersoftsolutions.com/Community/ClientUI/UXStackButton-problems-on-RightToLeft-cultures/</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>UXStackButton problems on RightToLeft cultures</title><link>http://www.intersoftsolutions.com/Community/ClientUI/UXStackButton-problems-on-RightToLeft-cultures/</link><pubDate>Thu, 14 Jul 2011 00:24:32 GMT</pubDate><dc:creator>Riendy</dc:creator><description>&lt;p&gt;Hi Catalin,&lt;/p&gt;&lt;p&gt;Thank you for including the code, it is help me to reproduce your issue here.&lt;br /&gt;Regarding to your issue for horizontal alignment, it is currently a bug. I have  forwarded your issue to our development team for further investigation.&lt;/p&gt;
&lt;p&gt;For vertical alignment, I think it is not an issue, because the popup should opened above the button and there's no space there, so popup get down into empty space (include in front of the button). If you want to set the popup under the button, you can set StackDockPosition property to "Top".&lt;/p&gt;
&lt;p&gt;I will let you know for any updates from our development team.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Thank you.&lt;br /&gt;Riendy&lt;/p&gt;</description></item><item><title>UXStackButton problems on RightToLeft cultures</title><link>http://www.intersoftsolutions.com/Community/ClientUI/UXStackButton-problems-on-RightToLeft-cultures/</link><pubDate>Wed, 13 Jul 2011 07:29:21 GMT</pubDate><dc:creator>catalin</dc:creator><description>&lt;pre&gt;&lt;p&gt;&lt;span style="font-size: 10pt; font-family: 'lucida sans unicode', sans-serif; "&gt;On
RightToLeft cultures, the popup from UXStackButton is displayed outside of the
view area, although there is space available to display it. &lt;o:p /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal"&gt;Please check the following example:&lt;/p&gt;
&lt;p class="MsoNormal"&gt;&amp;lt;Intersoft:UXPage &lt;/p&gt;&lt;/pre&gt;&lt;pre&gt;	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
	xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
	xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
	mc:Ignorable="d"
	xmlns:Intersoft="http://intersoft.clientui.com/schemas"
	x:Class="ClientUIApplication2.MainPage" 
	Title="MainPage Page"
	d:DesignWidth="640" d:DesignHeight="480"&amp;gt;
	
	&amp;lt;Grid x:Name="LayoutRoot" FlowDirection="RightToLeft"&amp;gt;
        &amp;lt;Grid.ColumnDefinitions&amp;gt;
            &amp;lt;ColumnDefinition Width="70"&amp;gt;&amp;lt;/ColumnDefinition&amp;gt;
            &amp;lt;ColumnDefinition Width="*"&amp;gt;&amp;lt;/ColumnDefinition&amp;gt;
            &amp;lt;ColumnDefinition Width="70"&amp;gt;&amp;lt;/ColumnDefinition&amp;gt;
        &amp;lt;/Grid.ColumnDefinitions&amp;gt;
        &amp;lt;Grid.RowDefinitions&amp;gt;
            &amp;lt;RowDefinition Height="*"&amp;gt;&amp;lt;/RowDefinition&amp;gt;
            &amp;lt;RowDefinition Height="*"&amp;gt;&amp;lt;/RowDefinition&amp;gt;
            &amp;lt;RowDefinition Height="*"&amp;gt;&amp;lt;/RowDefinition&amp;gt;
        &amp;lt;/Grid.RowDefinitions&amp;gt;
        &amp;lt;Intersoft:UXStackButton Name="btnSettings" Content="Open Settings" DisplayMode="Content" StackMode="GridStyle" StackGridMode="DynamicGrid" 
                                 Width="50" Height="30" BorderBrush="Black" Margin="20,0,0,0" VerticalAlignment="Top"&amp;gt;
            &amp;lt;Intersoft:UXStackButton.StackGridTemplate&amp;gt;
                &amp;lt;DataTemplate&amp;gt;
                    &amp;lt;Grid Width="250"&amp;gt;
                        &amp;lt;Grid.ColumnDefinitions&amp;gt;
                            &amp;lt;ColumnDefinition Width="*"&amp;gt;&amp;lt;/ColumnDefinition&amp;gt;
                            &amp;lt;ColumnDefinition Width="*"&amp;gt;&amp;lt;/ColumnDefinition&amp;gt;
                        &amp;lt;/Grid.ColumnDefinitions&amp;gt;
                        &amp;lt;Intersoft:GlassButton Content="Button 1" Margin="4"  Grid.Column="0"/&amp;gt;
                        &amp;lt;Intersoft:GlassButton Content="Button 2" Margin="4" Grid.Column="1"/&amp;gt;
                    &amp;lt;/Grid&amp;gt;
                &amp;lt;/DataTemplate&amp;gt;
            &amp;lt;/Intersoft:UXStackButton.StackGridTemplate&amp;gt;
        &amp;lt;/Intersoft:UXStackButton&amp;gt;
        &amp;lt;Intersoft:UXStackButton BorderBrush="Black" Content="Open Settings" DisplayMode="Content" Height="30"  Name="uXStackButton1" StackGridMode="DynamicGrid" StackMode="GridStyle" VerticalAlignment="Top" Width="50" Grid.Column="2"&amp;gt;
            &amp;lt;Intersoft:UXStackButton.StackGridTemplate&amp;gt;
                &amp;lt;DataTemplate&amp;gt;
                    &amp;lt;Grid Width="250"&amp;gt;
                        &amp;lt;Grid.ColumnDefinitions&amp;gt;
                            &amp;lt;ColumnDefinition Width="*" /&amp;gt;
                            &amp;lt;ColumnDefinition Width="*" /&amp;gt;
                        &amp;lt;/Grid.ColumnDefinitions&amp;gt;
                        &amp;lt;Intersoft:GlassButton Content="Button 1" Grid.Column="0" Margin="4" /&amp;gt;
                        &amp;lt;Intersoft:GlassButton Content="Button 2" Grid.Column="1" Margin="4" /&amp;gt;
                    &amp;lt;/Grid&amp;gt;
                &amp;lt;/DataTemplate&amp;gt;
            &amp;lt;/Intersoft:UXStackButton.StackGridTemplate&amp;gt;
        &amp;lt;/Intersoft:UXStackButton&amp;gt;
    &amp;lt;/Grid&amp;gt;
&amp;lt;/Intersoft:UXPage&amp;gt;&lt;/pre&gt;
&lt;p&gt;The horizontal alignament is complelty wrong for the two buttons.&lt;/p&gt;
&lt;p&gt;Also, the vertical alignament is wrong regardless of the FlowDirection - the popup should be opened below the buttons and the arrow should point to the buttons.&lt;/p&gt;
&lt;p&gt;We are using ClientUI 5 SP1 for Silverlight 4.&lt;/p&gt;</description></item></channel></rss>