﻿<?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 - Advice on control to use (Silverlight)</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Advice-on-control-to-use-Silverlight/</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>Advice on control to use (Silverlight)</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Advice-on-control-to-use-Silverlight/</link><pubDate>Tue, 11 Jun 2013 21:26:58 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Glad to hear the good news.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Should you need further assistance or run into any problems regarding our controls, feel free to post it into our forum. We would be happy to assist you again.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Advice on control to use (Silverlight)</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Advice-on-control-to-use-Silverlight/</link><pubDate>Tue, 11 Jun 2013 12:28:42 GMT</pubDate><dc:creator>zen8019</dc:creator><description>&lt;p&gt;Thanks for the quck response - I have used that code and it worked well - however I needed to be able to select the item so I changed the &lt;span style="font-family: 'courier new', tahoma; font-size: 9pt; color: rgb(63, 63, 63); line-height: 18px; white-space: pre-wrap;"&gt;Intersoft:UXItemsControl &lt;b&gt;to a list box and got what I needed thanks.&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Advice on control to use (Silverlight)</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Advice-on-control-to-use-Silverlight/</link><pubDate>Tue, 11 Jun 2013 00:46:39 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Thank you for the attached screenshot which shows the required layout.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;You may try to use &lt;strong&gt;UXItemsControl&lt;/strong&gt; and customize its item appearance by defining the &lt;strong&gt;ItemTemplate&lt;/strong&gt;. UXItemsControl is useful in various UI scenarios that host a collection of similar item types.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;Intersoft:UXItemsControl BorderThickness="0"
                            ItemsSource="{Binding Path=FilteredBooks}"&amp;gt;
    &amp;lt;Intersoft:UXItemsControl.ItemTemplate&amp;gt;
        &amp;lt;DataTemplate&amp;gt;
            &amp;lt;Intersoft:StylishLabel ContentType="ContentAndImage"
                                    ImageSource="{Binding Path=Book.Image}"
                                    ImageHeight="128" ImageWidth="128" Width="128"
                                    TextImageRelation="ImageAboveText"
                                    Background="{x:Null}" BorderThickness="0"&amp;gt;
                &amp;lt;Intersoft:EllipsisText Text="{Binding Path=Book.Title}"/&amp;gt;
            &amp;lt;/Intersoft:StylishLabel&amp;gt;
        &amp;lt;/DataTemplate&amp;gt;
    &amp;lt;/Intersoft:UXItemsControl.ItemTemplate&amp;gt;
    &amp;lt;Intersoft:UXItemsControl.ItemsPanel&amp;gt;
        &amp;lt;ItemsPanelTemplate&amp;gt;
            &amp;lt;Intersoft:WrapPanel /&amp;gt;
        &amp;lt;/ItemsPanelTemplate&amp;gt;
    &amp;lt;/Intersoft:UXItemsControl.ItemsPanel&amp;gt;
&amp;lt;/Intersoft:UXItemsControl&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Last, wrap the UXItemsControl inside UXScrollViewer control.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;Intersoft:UXScrollViewer Name="SampleControl1" Intersoft:DockPanel.IsFillElement="True"&amp;gt;
    &amp;lt;Intersoft:UXItemsControl ...&amp;gt;
    &amp;lt;/Intersoft:UXItemsControl&amp;gt;
&amp;lt;/Intersoft:UXScrollViewer&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;We happen to have a sample that is similar to the layout shown in the screenshot. Please follow the step below to open the sample.&lt;/span&gt;&lt;/p&gt;
&lt;ol style="color: rgb(31, 73, 125);"&gt;&lt;li&gt;Open this &lt;a href="http://live.clientui.com/Default.html#/UXControls/UXScrollViewer"&gt;link&lt;/a&gt;. It will open Scroll Viewer – Book List sample.&lt;/li&gt;&lt;li&gt;After the sample loaded, set &lt;strong&gt;VerticalScrollBarVisibility&lt;/strong&gt; to &lt;strong&gt;Disabled&lt;/strong&gt; and &lt;strong&gt;HorizontalScrollBarVisibility&lt;/strong&gt; to &lt;strong&gt;Auto&lt;/strong&gt;. Those properties can be set in runtime by modifying the Options section which is located in the right pane of the sample.&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Alternatively, &lt;strong&gt;UXContentScroller&lt;/strong&gt; (live sample: &lt;a href="http://live.clientui.com/Default.html#/UXControls/UXScroller" target="_blank"&gt;http://live.clientui.com/Default.html#/UXControls/UXScroller&lt;/a&gt;) or &lt;strong&gt;UXFlow&lt;/strong&gt; (live sample: &lt;a href="http://live.clientui.com/Default.html#/UXFlow/Binding" target="_blank"&gt;http://live.clientui.com/Default.html#/UXFlow/Binding&lt;/a&gt;) can be utilized to bring more compelling user interface.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Please let us hear your feedback whether this helps or not.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Advice on control to use (Silverlight)</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Advice-on-control-to-use-Silverlight/</link><pubDate>Mon, 10 Jun 2013 12:59:21 GMT</pubDate><dc:creator>zen8019</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I am trying to have some sort of list box that has items that go horizontally - I have looked at your controls but am confused as to what to pick - Datapresenter Manger, IconPresenter, GridPresenter, ListPresenter, ListBox, GridView - for my needs.  I have tried some of them but get errors (Layout cycle detected.  Layout could not complete.).  I need the items to have an image and some text underneath - a bit like an image scroller (html)  - please see attached screen shot showing what I am trying to achieve - thanks&lt;/p&gt;</description></item></channel></rss>