This is a migrated thread and some comments may be shown as answers.

When the window is small, the title is not fully displayed

3 Answers 101 Views
RibbonView and RibbonWindow
This is a migrated thread and some comments may be shown as answers.
Patrick
Top achievements
Rank 2
Iron
Iron
Iron
Patrick asked on 05 Feb 2014, 04:38 PM
Hello,
look at the two attached screen shots: the Normal image displays the window with a width large enough to display the full title, the Small image displays a window slightly smaller and the Smallest image displays an even smallest window. As you can see, the Small image displays not fully the title, even if it remains plenty of white space; and the Smallest image displays the title left aligned, with missing parts and plenty of empty space at the right.
This is with the Office2013 theme.
Note also that the font for the title is too small.
Patrick

3 Answers, 1 is accepted

Sort by
0
Martin Ivanov
Telerik team
answered on 10 Feb 2014, 05:11 PM
Hi Patrick,

I wasn't able to reproduce the described behavior, but we have a similar feature request logged in our feedback portal, which is already implemented and it will be available with the next official release of our controls at the end of the February.

However, I would be grateful if you provide me with a runnable project where the described issue is demonstrated. This will allow me to test it locally and further investigate it.

Regards,
Martin
Telerik

Check out the new Telerik Platform - the only modular platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native apps. Register for the free online keynote and webinar to learn more about the Platform on Wednesday, February 12, 2014 at 11:00 a.m. ET (8:00 a.m. PT).

0
Patrick
Top achievements
Rank 2
Iron
Iron
Iron
answered on 11 Feb 2014, 04:26 PM
Hi Martin,
I've made some additional test and the problem is visible only if you have additional content and the additional content is long.
You can have the problem by creating a new WPF application, add the right references (including the Office2013 theme), and replacing MainWnd.xaml with:
<tk:RadRibbonWindow
  x:Class="WpfApplication1.MainWindow"
  <DockPanel>
    <tk:RadRibbonView ApplicationButtonContent="File"
                      ApplicationName="VIS"
                      IsMinimizable="True"
                      MinimizeButtonVisibility="Visible"
                      Title="Name of the opened tournament"
                      DockPanel.Dock="Top">
 
      <tk:RadRibbonView.TabStripAdditionalContent>
        <Grid Margin="10 0 5 0">
          <Grid.Resources>
            <Style TargetType="TextBlock">
              <Setter Property="FontSize" Value="14" />
            </Style>
          </Grid.Resources>
 
          <StackPanel Name="SignInGroup"
                      Background="Transparent"
                      Cursor="Hand"
                      Orientation="Horizontal"
                      VerticalAlignment="Center">
            <TextBlock Text="This is a long additional content" />
          </StackPanel>
        </Grid>
      </tk:RadRibbonView.TabStripAdditionalContent>
 
      <tk:RadRibbonTab Header="Tab 1">
        <tk:RadRibbonGroup Header="Group 1">
          <tk:RadRibbonButton Content="Button"/>
        </tk:RadRibbonGroup>
      </tk:RadRibbonTab>
    </tk:RadRibbonView>
     
  </DockPanel>
</tk:RadRibbonWindow>

When the window is resized horizontally, the title ends where the additional content starts.
Also the font for the title is not of the right font size.
Patrick
0
Martin Ivanov
Telerik team
answered on 12 Feb 2014, 01:02 PM
Hello Patrick,

Thank your for the provided project. It helped us understand your scenario better.

Unfortunately, this is a bug in the RadRibbonView control. It is logged in our feedback portal where you can track its status. 

Regards,
Martin
Telerik

Check out the new Telerik Platform - the only modular platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native apps. Register for the free online keynote and webinar to learn more about the Platform on Wednesday, February 12, 2014 at 11:00 a.m. ET (8:00 a.m. PT).

Tags
RibbonView and RibbonWindow
Asked by
Patrick
Top achievements
Rank 2
Iron
Iron
Iron
Answers by
Martin Ivanov
Telerik team
Patrick
Top achievements
Rank 2
Iron
Iron
Iron
Share this question
or