Binding problem at the StatusBar

Ribbon for WPF Forum

Posted 17 years ago by Siegfried Kreutzer - Ecolog GmbH
Version: 1.0.0347
Avatar
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.

<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>
Any suggestions?

Comments (2)

Posted 17 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
Hi Siegfried,

Thanks for the sample, this is now fixed for the next maintenance release.


Actipro Software Support

Posted 16 years ago by Siegfried Kreutzer - Ecolog GmbH
Avatar
Thanks support team.
I've tested the new 1.0.0348 version and it works. No more binding problems at the StatusBar.
The latest build of this product (v24.1.1) was released 2 months ago, which was after the last post in this thread.

Add Comment

Please log in to a validated account to post comments.