Version 24.2 (latest)

AllowMinimized Property

Returns/sets the possibility of the XamOutlookBar to be minimized. This is a dependency property.
Syntax
public bool AllowMinimized {get; set;}
Remarks

By default, AllowMinimized is true. Set this property to false to prevent minimizing of XamOutlookBar.

Example
Private Sub IG_XamOutlookBar_Properties()

        xamOutlookBar1.AllowMinimized = True
        xamOutlookBar1.MinimizedStateThreshold = 11
        xamOutlookBar1.MinimizedWidth = 55

End Sub
'Declaration
 
Public Property AllowMinimized As Boolean
 
public IG_XamOutlookBar_Properties()
{
    InitializeComponent();

    xamOutlookBar1.AllowMinimized = true;
    xamOutlookBar1.MinimizedStateThreshold = 11;
    xamOutlookBar1.MinimizedWidth = 55;
}
'Declaration
 
Public Property AllowMinimized As Boolean
 
<Window x:Class="XamOutlookBarApp.IG_XamOutlookBar_Properties"
    
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    
xmlns:igOutlookBar="http://infragistics.com/OutlookBar"
    
Title="IG_XamOutlookBar_Properties" Height="300" Width="300">
    
<StackPanel Orientation="Horizontal">
        
<igOutlookBar:XamOutlookBar Name="xamOutlookBar1" IsMinimized="True"
                                    
MinimizedWidth="55" MinimizedStateThreshold="11"
                                    
>
            
<igOutlookBar:OutlookBarGroup Header="Group 1" Content="Group 1" />
            
<igOutlookBar:OutlookBarGroup Header="Group 2" Content="Group 2"/>
        
</igOutlookBar:XamOutlookBar>
        
<CheckBox IsChecked="{Binding ElementName=xamOutlookBar1, Path=AllowMinimized}"
                  
Content="AllowMinimized"/>
    
</StackPanel>
</Window>
'Declaration
 
Public Property AllowMinimized As Boolean
 
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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