Intersoft ClientUI Documentation
ControlPanelPosition Property



Gets or sets the bottom margin / space of control panel.
Syntax
<CategoryAttribute("Layout Settings")>
Public Property ControlPanelPosition As Double
Dim instance As UXFlow
Dim value As Double
 
instance.ControlPanelPosition = value
 
value = instance.ControlPanelPosition
[CategoryAttribute("Layout Settings")]
public double ControlPanelPosition {get; set;}
[CategoryAttribute("Layout Settings")]
public:
property double ControlPanelPosition {
   double get();
   void set (    double value);
}
Remarks

The control panel element is located at the bottom of UXFlow which provides navigation and control panel for navigating the items.

Several properties that you can customize for this element are:

  • The distance / margin with bottom boundary using ControlPanelPosition property.
    XAML
    Copy Code
    <Intersoft:UXFlow x:Name="UXFlow1" Width="700" Height="300" ControlPanelPosition="40">
        <Intersoft:UXFlowItem ImageSource="le-meurice.jpg" Title="Hôtel Le Meurice" SubTitle="Paris, opposite Tuileries Garden."/>
        <Intersoft:UXFlowItem ImageSource="altira-macau.jpg" Title="Altira Macau" SubTitle="Taipa Island, Macau."/>
        
        ...
    </Intersoft:UXFlow>
  • The buttons visibility / control panel visibility through Control Panel related properties such as ControlPanelVisibility, FullScreenButtonVisibility, SlideShowButtonVisibilty, and ScrollBarVisibility.
    XAML
    Copy Code
    <Intersoft:UXFlow x:Name="UXFlow1" Width="700" Height="300" SlideShowButtonVisibility="Collapsed" FullScreenButtonVisibility="Collapsed">
        <Intersoft:UXFlowItem ImageSource="le-meurice.jpg" Title="Hôtel Le Meurice" SubTitle="Paris, opposite Tuileries Garden."/>
        <Intersoft:UXFlowItem ImageSource="altira-macau.jpg" Title="Altira Macau" SubTitle="Taipa Island, Macau."/>
        
        ...
    </Intersoft:UXFlow>
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

UXFlow Class
UXFlow Members

Concepts

UXFlow

Send Feedback