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

Flip Book page in bottom to top mode

3 Answers 202 Views
Book
This is a migrated thread and some comments may be shown as answers.
deva sudan
Top achievements
Rank 2
deva sudan asked on 26 May 2010, 04:02 PM
Hi -

Is it possible to flip the book control in bottom to top mode.  Similar to Table top calendar flipping upside-down, can we make the book control pages to flip rather flipping from left-right. 

Thanks,
Deva

3 Answers, 1 is accepted

Sort by
0
Kiril Stanoev
Telerik team
answered on 31 May 2010, 03:06 PM
Hi Deva,

Currently this scenario is not supported. However, we've already logged such request in our PITS and you can give your vote for it. If this feature request gathers enough popularity it would definitely be implemented. Let me know if you have further questions or comments on the topic.

Sincerely yours,
Kiril Stanoev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Leiy
Top achievements
Rank 1
answered on 23 Feb 2012, 10:09 AM

That's cool to have the flip book of vertical orientation like a calendar. I've tried the flipbook maker: http://www.kvisoft.com/flipbook-maker/. It's good on the whole, but it cannot create vertical flipping, that's a pity.

0
Kiril Stanoev
Telerik team
answered on 23 Feb 2012, 04:39 PM
Hello Leiy,

You can also try using Telerik's LayoutTransformControl:

<UserControl x:Class="ID_313533.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" mc:Ignorable="d" d:DesignHeight="300"
        d:DesignWidth="400">
    <Grid x:Name="LayoutRoot" Background="White">
        <telerik:LayoutTransformControl Width="400" Height="500">
            <telerik:LayoutTransformControl.LayoutTransform>
                <RotateTransform Angle="90.3" />
            </telerik:LayoutTransformControl.LayoutTransform>
            <telerik:RadBook x:Name="book1">
                <telerik:RadBook.ItemTemplate>
                    <DataTemplate>
                        <Border BorderBrush="Black" BorderThickness="1" Background="LightGreen">
                            <telerik:LayoutTransformControl>
                                <telerik:LayoutTransformControl.LayoutTransform>
                                    <RotateTransform Angle="-90.3" />
                                </telerik:LayoutTransformControl.LayoutTransform>
                                <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center"
                                        Orientation="Horizontal">
                                    <TextBlock Text="Page #" FontSize="18" VerticalAlignment="Center" />
                                    <TextBlock Text="{Binding }" FontSize="18" FontWeight="Bold" />
                                </StackPanel>
                            </telerik:LayoutTransformControl>
                        </Border>
                    </DataTemplate>
                </telerik:RadBook.ItemTemplate>
            </telerik:RadBook>
        </telerik:LayoutTransformControl>
    </Grid>
</UserControl>

using System;
using System.Linq;
using System.Windows.Controls;
 
namespace ID_313533
{
    public partial class MainPage : UserControl
    {
        public MainPage()
        {
            InitializeComponent();
            this.book1.ItemsSource = Enumerable.Range(0, 10);
        }
    }
}

Here is an output from the code above: http://screencast.com/t/TdUX7ZyOtTDs 
 

Kind regards,
Kiril Stanoev
the Telerik team
Sharpen your .NET Ninja skills! Attend Q1 webinar week and get a chance to win a license! Book your seat now >>
Tags
Book
Asked by
deva sudan
Top achievements
Rank 2
Answers by
Kiril Stanoev
Telerik team
Leiy
Top achievements
Rank 1
Share this question
or