I'm working on a Windows 8 app (Windows Store App) and i need to integrate a customisable calendar control. I need to use free libraries so i'm pretty limited by that. I digged around the Calendar control of the WinRTXamlToolkit but I couldn't find out a way to expand its width to make it take its parent control's width.
I tried to do basic stuffs such as
<c:Calendar Style="{x:Null}" Width="1200"/>
or
<c:Calendar Width="{Binding ActualWidth, ElementName=MainGrid}"/>
None of those solutions worked...
Is there a way to do so ? Or is there another control that i should be aware of ?