Vertical separator in WPF Ribbon
        Posted  
        
            by Cassandra
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Cassandra
        
        
        
        Published on 2010-06-07T13:08:07Z
        Indexed on 
            2010/06/07
            13:32 UTC
        
        
        Read the original article
        Hit count: 1013
        
How can I add Vertical separator to WPF Ribbon, to RibbonGroup? I have tried something like that, but i got horizontal separator istead of vertical.
<r:RibbonGroup>
<r:RibbonButton Command="{StaticResource SomeButton}" />     
 <r:RibbonSeparator></r:RibbonSeparator> 
 <r:RibbonToggleButton IsChecked="False" Command="{StaticResource AnotherButton}"/></r:RibbonToggleButton>
 </r:RibbonGroup>
So how can I make vertical separator?
© Stack Overflow or respective owner