バージョン

SelectedAreaMinHeight プロパティ

デバイス依存しないユニットで選択されたグループ領域の最小の高さを取得または設定します。これは依存プロパティです。
シンタックス
'宣言
 
Public Property SelectedAreaMinHeight As Double
public double SelectedAreaMinHeight {get; set;}
使用例
Create XamOutlookBar
void CreateXOB()
{
    //create new instance of XamOutlookBar class
    Infragistics.Windows.OutlookBar.XamOutlookBar xamOutlook = new Infragistics.Windows.OutlookBar.XamOutlookBar();
    xamOutlook.SelectedAreaMinHeight = 79;
    xamOutlook.NavigationAreaMaxGroups = 0;
    xamOutlook.MinimizedWidth = 60;
    xamOutlook.Theme = "Office2k7Silver";
    xamOutlook.ToolTip = "XamOutlookBar tooltip";
    xamOutlook.AllowMinimized = true;
    xamOutlook.ShowToolTips = true;
    xamOutlook.ShowGroupHeaderAsToolTip = true;
    xamOutlook.IsMinimized = true;
    xamOutlook.MinimizedStateThreshold = 20; // set minimized threshold to 10 points over MinimizedWidth        
}
<Window x:Class="xobsnippets.Window1"
    
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    
Title="Window1" Height="300" Width="300" 
    
xmlns:igOutlookBar="http://infragistics.com/OutlookBar">
    
<Grid>
        
<igOutlookBar:XamOutlookBar x:Name="xamOutlookBar" 
                                    
SelectedAreaMinHeight="70" NavigationAreaMaxGroups="0" 
                                    
Theme="Office2k7Silver" ShowToolTips="True"
                                    
MinimizedWidth="60" MinimizedStateThreshold="10"
                                    
ShowGroupHeaderAsToolTip="True">
            
<igOutlookBar:OutlookBarGroup Header="Group 1">
                
<Grid />
            
</igOutlookBar:OutlookBarGroup>
            
<igOutlookBar:OutlookBarGroup Header="Group 2">
                
<Grid />
            
</igOutlookBar:OutlookBarGroup>
        
</igOutlookBar:XamOutlookBar>
    
</Grid>
</Window>
Create XamOutlookBar
Sub CreateXOB()

   'create new instance of XamOutlookBar class 
    Dim xamOutlook As New Infragistics.Windows.OutlookBar.XamOutlookBar()

    xamOutlook.SelectedAreaMinHeight = 79
    xamOutlook.NavigationAreaMaxGroups = 0
    xamOutlook.MinimizedWidth = 60
    xamOutlook.Theme = "Office2k7Silver"
    xamOutlook.ToolTip = "XamOutlookBar tooltip"
    xamOutlook.AllowMinimized = True
    xamOutlook.ShowToolTips = True
    xamOutlook.ShowGroupHeaderAsToolTip = True
    xamOutlook.IsMinimized = True
    xamOutlook.MinimizedStateThreshold = 20 ' set minimized threshold to 10 points over MinimizedWidth      

End Sub
参照