Project DescriptionEpub Reader for Windows Phone
Example
// Xaml file:
xmlns:epubreader="clr-namespace:EPubReader;assembly=EPubReader"
<epubreader:EPubViewer x:Name="EPubViewer" Tap="EPubViewer_Tap"/>
// Code file:
EPubViewer.Source = Application.GetResourceStream(new Uri("/[your app name];component/[path to epub file]", UriKind.Relative)).Stream;
// Show table of contents
EPubViewer.State = EPubReader.State.Toc;
// Show cover
EPubViewer.State = EPubReader.State.Cover;
Features
- control supports: FontSize, FontFamily, LineHeight, Brightness, Mode (Day / Night), State (Normal, Cover, TOC)
- control supports access to Metadata of book
- control identifies that book has cover or table of contents
Remarks
- control does not support embeded fonts
- some issues with linking (i'm working on them at this moment)
Blog
What's next?EpubReader still is under heavy development.
HelpIf you wanna help, contact me via CodePlex or post issues via tracker.