﻿<?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 - Page Style</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Page-Style/</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>Page Style</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Page-Style/</link><pubDate>Tue, 27 Aug 2013 22:44:10 GMT</pubDate><dc:creator>yudi</dc:creator><category>UXPage style</category><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Try to add the following style to your UXWindow and hope that this one is close to your requirement (the result can be seen in the attached &lt;a href="http://www.intersoftpt.com/Community/Attachments/3677/UXWindowBlack.png" alt="UXWindowBlack.png"&gt;UXWindowBlack.png&lt;/a&gt;).&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;Setter Property="InnerBackground"&amp;gt;    &amp;lt;Setter.Value&amp;gt;
        &amp;lt;ImageBrush ImageSource="/Assets/Images/BackgroundOrders.png" Stretch="Fill" Opacity="1" /&amp;gt;
    &amp;lt;/Setter.Value&amp;gt;
&amp;lt;/Setter&amp;gt;
&amp;lt;Setter Property="ContentBackground" Value="Black" /&amp;gt;
&amp;lt;Setter Property="HeaderForeground" Value="White" /&amp;gt;
&amp;lt;Setter Property="Background" Value="Black" /&amp;gt;
&amp;lt;Setter Property="InnerBorderThickness" Value="0" /&amp;gt;
&amp;lt;Setter Property="ContentBorderBrush" Value="Black" /&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;The value of &lt;strong&gt;InnerBackground&lt;/strong&gt; property is set to the background image. This property gets or sets the brush to apply to the background of the window’s inner border.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;&lt;strong&gt;ContentBackground&lt;/strong&gt; is now set to be &lt;strong&gt;Black&lt;/strong&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;The value of &lt;strong&gt;HeaderForeground&lt;/strong&gt; property is set to be &lt;strong&gt;White&lt;/strong&gt; so that any string which appears in the header element will be visible to the user.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Page Style</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Page-Style/</link><pubDate>Tue, 27 Aug 2013 05:08:58 GMT</pubDate><dc:creator>TheHaythemKaroui</dc:creator><category>UXPage style</category><description>&lt;p&gt;Hi again,&lt;/p&gt;&lt;p&gt;I put the setter as you indicated and this is what i got : attached in "Reult.png" image.&lt;/p&gt;
&lt;p&gt;this changed only the background of window content.&lt;/p&gt;
&lt;p&gt;in fact, what i want is to have the hole style of the page like the image , e.g: like the &lt;a href="http://live.clientui.com/#/UXGridView/Reference/OrdersList" style="font-family: 'lucida grande', 'segoe ui', arial, verdana, tahoma; color: rgb(22, 95, 167); font-size: 12px; line-height: 18px; background-color: rgb(255, 255, 255);"&gt;http://live.clientui.com/#/UXGridView/Reference/OrdersList&lt;/a&gt; uxwindow.&lt;/p&gt;
&lt;p&gt;should i delete the header and add my custom close and minimize buttons ? if yes how can i make this happen? if not what do you suggest me ?&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Page Style</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Page-Style/</link><pubDate>Mon, 26 Aug 2013 21:43:52 GMT</pubDate><dc:creator>yudi</dc:creator><category>UXPage style</category><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Please try to set the image background on the &lt;strong&gt;ContentBackground&lt;/strong&gt; property of UXWindow. This property gets or sets the brush to apply to the background of the window’s content.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;Setter Property="ContentBackground"&amp;gt;
    &amp;lt;Setter.Value&amp;gt;
        &amp;lt;ImageBrush ImageSource="/Assets/Images/AbstractBg.png" Stretch="Fill" Opacity="1" /&amp;gt;
    &amp;lt;/Setter.Value&amp;gt;
&amp;lt;/Setter&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;This should helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Page Style</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Page-Style/</link><pubDate>Mon, 26 Aug 2013 03:57:50 GMT</pubDate><dc:creator>TheHaythemKaroui</dc:creator><category>UXPage style</category><description>&lt;p&gt;Hi Yudi,&lt;/p&gt;&lt;p&gt;I want to make the "BackGroudOrder.png" (attached in previous post) the default backgroud of my uxwindows. I tried to put that image in the background property but still didn't worked.&lt;/p&gt;
&lt;p&gt;I tried to put this code below in my stylePage:&lt;/p&gt;&lt;pre&gt;&amp;lt;Setter Property="Background"&amp;gt; 
            &amp;lt;Setter.Value&amp;gt;
                &amp;lt;ImageBrush  ImageSource="/Xspreads.CLientSL;component/Assets/Images/bg_noise.png"/&amp;gt;
            &amp;lt;/Setter.Value&amp;gt;
        &amp;lt;/Setter&amp;gt;&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;I want all my uxwindows to be like the uxwindow int this link :&lt;/p&gt;
&lt;p&gt; &lt;a href="http://www.intersoftpt.com/Community/Attachments/3677/BackgroundOrders.png" style="font-size: 10pt;"&gt;http://www.intersoftpt.com/Community/Attachments/3677/BackgroundOrders.png&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;how can i do this ? &lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Page Style</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Page-Style/</link><pubDate>Fri, 23 Aug 2013 05:56:40 GMT</pubDate><dc:creator>yudi</dc:creator><category>UXPage style</category><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I enclosed a screenshot which shows the Order List sample of UXGridView. Could you please put a mark on the desired style or element which going to be applied on your UXWindow?&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I will try to create a sample of UXWindow which implements the style described.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Thank you.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Page Style</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Page-Style/</link><pubDate>Thu, 22 Aug 2013 05:23:23 GMT</pubDate><dc:creator>TheHaythemKaroui</dc:creator><category>UXPage style</category><description>&lt;p&gt;Hi Yudi,&lt;/p&gt;&lt;p&gt;please am back now to the page style tasks and i want your assistance again...&lt;/p&gt;
&lt;p&gt;i wanted to integrate that image in my page style but i couldn't this is my page style :&lt;/p&gt;&lt;pre&gt; &amp;lt;Style x:Key="WindowStyle" TargetType="Intersoft:UXWindow"&amp;gt; 
        &amp;lt;!--&amp;lt;Setter Property="ToolTipService.ToolTip" Value="Move"/&amp;gt;--&amp;gt;
        &amp;lt;Setter Property="HeaderTemplate" &amp;gt;
            &amp;lt;Setter.Value&amp;gt;
                &amp;lt;DataTemplate &amp;gt;
                    &amp;lt;Grid x:Name="LayoutRoot"&amp;gt;
                        &amp;lt;Grid.RowDefinitions&amp;gt;
                            &amp;lt;RowDefinition /&amp;gt;
                        &amp;lt;/Grid.RowDefinitions&amp;gt;
                        &amp;lt;Grid.ColumnDefinitions &amp;gt;
                            &amp;lt;ColumnDefinition Width="575*" /&amp;gt;
                            &amp;lt;ColumnDefinition Width="25"/&amp;gt;
                            &amp;lt;ColumnDefinition Width="25"/&amp;gt;
                        &amp;lt;/Grid.ColumnDefinitions&amp;gt;
                        &amp;lt;Intersoft:UXButton x:Name="uXBtnClose" Style="{StaticResource BarBtnCloseStyle}"  Command="Intersoft:WindowCommands.Close" ToolTipService.ToolTip="Close" /&amp;gt;
                        &amp;lt;Intersoft:UXButton x:Name="uXBtnMinimise" Style="{StaticResource BarBtnMinimiseStyle}" Command="Intersoft:WindowCommands.Minimize" ToolTipService.ToolTip="Minimize" /&amp;gt;
                    &amp;lt;/Grid&amp;gt;
                    
                &amp;lt;/DataTemplate&amp;gt;
            &amp;lt;/Setter.Value&amp;gt;
        &amp;lt;/Setter&amp;gt;
        &amp;lt;Setter Property="EnableSystemContextMenu" Value="False"/&amp;gt;
        &amp;lt;Setter Property="HeaderHorizontalAlignment" Value="Right"/&amp;gt;
        &amp;lt;Setter Property="DropShadow"&amp;gt;
            &amp;lt;Setter.Value&amp;gt;
                &amp;lt;DropShadowEffect/&amp;gt;
            &amp;lt;/Setter.Value&amp;gt;
        &amp;lt;/Setter&amp;gt;
        &amp;lt;Setter Property="WindowStartupLocation" Value="Auto"/&amp;gt;
        &amp;lt;Setter Property="Height" Value="380"/&amp;gt;
        &amp;lt;Setter Property="Width" Value="840"&amp;gt;&amp;lt;/Setter&amp;gt;
        &amp;lt;Setter Property="BorderBrush" Value="{x:Null}"/&amp;gt;
        &amp;lt;Setter Property="ContentBackground" Value="{StaticResource WindowContentBackgroundColor}"/&amp;gt;
        &amp;lt;Setter Property="ContentBorderBrush" Value="{x:Null}"/&amp;gt;      
        &amp;lt;Setter Property="Foreground" Value="{StaticResource WindowForeground}"/&amp;gt;
        &amp;lt;Setter Property="HeaderForeground" Value="White"/&amp;gt;
        &amp;lt;Setter Property="InnerBackground" Value="{StaticResource WindowInnerBackground}"/&amp;gt;
        &amp;lt;Setter Property="HeaderDisplayMode" Value="Content"/&amp;gt;
        &amp;lt;Setter Property="Background" Value="{StaticResource WindowBackground}"/&amp;gt;
        &amp;lt;Setter Property="InnerBorderBrush" Value="{x:Null}"/&amp;gt;
        &amp;lt;Setter Property="ContentBorderThickness" Value="0"/&amp;gt;
        &amp;lt;Setter Property="BorderThickness" Value="0"/&amp;gt;
        &amp;lt;Setter Property="CornerRadius" Value="15"/&amp;gt;
        &amp;lt;Setter Property="HeaderMargin" Value="4"/&amp;gt;
        &amp;lt;Setter Property="InnerBorderThickness" Value="0"/&amp;gt;
        &amp;lt;Setter Property="ControlBoxVisibility" Value="Collapsed"/&amp;gt;
        &amp;lt;Setter Property="FontSize" Value="16"/&amp;gt;
        &amp;lt;Setter Property="FontFamily" Value="Euphemia"/&amp;gt;
        &amp;lt;Setter Property="FontWeight" Value="Bold"/&amp;gt;
        &amp;lt;Setter Property="BusyText" Value="Please Wait"/&amp;gt;
        &amp;lt;Setter Property="Padding" Value="5"/&amp;gt;
        
        
        
    &amp;lt;/Style&amp;gt;&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;where can i put the image please?&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;thank's in advance&lt;/p&gt;</description></item><item><title>Page Style</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Page-Style/</link><pubDate>Tue, 18 Jun 2013 03:51:06 GMT</pubDate><dc:creator>yudi</dc:creator><category>UXPage style</category><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;The Order List sample page of UXGridView uses image as the background. The way to implement the page style for your UXWindow should be as simply as put the same image as the background of your UXWindow.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;The snippet code below shows how the style is implemented in the page of the sample.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;&amp;lt;Border CornerRadius="8"&amp;gt;
    &amp;lt;Border.Effect&amp;gt;
        &amp;lt;DropShadowEffect ShadowDepth="1" Opacity="0.75"/&amp;gt;
    &amp;lt;/Border.Effect&amp;gt;
    &amp;lt;Border.Background&amp;gt;
        &amp;lt;ImageBrush Stretch="None" AlignmentY="Top" AlignmentX="Right"
                    ImageSource="/Intersoft.ClientUI.Samples.UXGridView;component/Assets/Images/Background/BackgroundOrders.png"/&amp;gt;
    &amp;lt;/Border.Background&amp;gt;
&amp;lt;/Border&amp;gt;&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;If you have installed Intersoft WebUI Studio suite on your development PC, the image can be found inside the “C:\Program Files\Intersoft Solutions\Intersoft WebUI Studio 2012 R2\Samples\SL5\cs\ClientUI Samples\Intersoft.ClientUI.Samples.UXGridView\Assets\Images\Background” folder.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I enclosed the image as attachment.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Please feel free to let us know whether this helps or not.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Page Style</title><link>http://www.intersoftsolutions.com/Community/ClientUI/Page-Style/</link><pubDate>Mon, 17 Jun 2013 08:15:13 GMT</pubDate><dc:creator>TheHaythemKaroui</dc:creator><category>UXPage style</category><description>&lt;p&gt;&lt;a href="http://live.clientui.com/#/UXGridView/Reference/OrdersList"&gt;http://live.clientui.com/#/UXGridView/Reference/OrdersList&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I found this Intersoft sample and i appreciated the page style,can you, please, send me the style of the UxPage on this link? i want to make something like it in my general style for my UxWindows.&lt;/p&gt;
&lt;p&gt;Best Regards &lt;/p&gt;
&lt;p&gt;Haythem KAROUI&lt;/p&gt;</description></item></channel></rss>