Hi,
I try to bind something at the StatusBar of a RibbonWindow, but it fails.
Binding someting at the StatusBar in a normal (not a ribbon)-Window works perfectly.
here is a sample code snippet.Any suggestions?
I try to bind something at the StatusBar of a RibbonWindow, but it fails.
Binding someting at the StatusBar in a normal (not a ribbon)-Window works perfectly.
here is a sample code snippet.
<ribbon:RibbonWindow
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:ribbon="http://schemas.actiprosoftware.com/winfx/xaml/ribbon"
    xmlns:shared="http://schemas.actiprosoftware.com/winfx/xaml/shared"
    x:Class="UntitledProject1.Window1"
    x:Name="Window"
    Title="Window1"
    Width="640" Height="480">
    <ribbon:RibbonWindow.StatusBar>
      <StatusBar>
        <StatusBarItem>
          <StackPanel Orientation="Horizontal">
            <TextBlock x:Name="textblock_original" Text="that is a test" />
            <TextBlock x:Name="textblock" Text="{Binding Path=Text, ElementName=textblock_original, Mode=Default}" />
          </StackPanel>
        </StatusBarItem>
      </StatusBar>
    </ribbon:RibbonWindow.StatusBar>
</ribbon:RibbonWindow>