Intersoft ClientUI Documentation
StackTotalDisplayItem Property (UXStackButton)



Gets or sets a value that determines the total number of sub items that will be visible when stack mode is set to ArcStyle and the stack menu is collapsed.
Syntax
<CategoryAttribute("Stack")>
Public Property StackTotalDisplayItem As Integer
Dim instance As UXStackButton
Dim value As Integer
 
instance.StackTotalDisplayItem = value
 
value = instance.StackTotalDisplayItem
[CategoryAttribute("Stack")]
public int StackTotalDisplayItem {get; set;}
[CategoryAttribute("Stack")]
public:
property int StackTotalDisplayItem {
   int get();
   void set (    int value);
}
Remarks

UXStackButton has an Icon property that you can assign to an image source which will indicates what the button represent. Alternatively you can also display the stacking item that belongs to UXStackButton using StackTotalDisplayItem.

 

Example

The following example shows how to display the stack items to represent the UXStackButton.

Example Title
Copy Code
<Intersoft:UXStackButton Content="Button" HorizontalAlignment="Center" Height="64" VerticalAlignment="Bottom" Width="64" StackTotalDisplayItem="3">
        <Intersoft:UXStackItem Icon="twitter.png" Text="Twitter"/>
        <Intersoft:UXStackItem Icon="facebook.png" Text="Facebook"/>
        <Intersoft:UXStackItem Icon="digg.png" Text="Digg"/>
        <Intersoft:UXStackItem Icon="delicious.png" Text="Delicious"/>
        <Intersoft:UXStackItem Icon="flickr.png" Text="Flickr"/>
        <Intersoft:UXStackItem Icon="linkedin.png" Text="Linked In"/>
</Intersoft:UXStackButton>

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

UXStackButton Class
UXStackButton Members

Concepts

UXStackButton

Send Feedback