Hi,
i wanna create a simple page with a full page calendar and a navigation drawer on the right in a UWP
i have this simple page
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:xForms="clr-namespace:Syncfusion.SfCalendar.XForms;assembly=Syncfusion.SfCalendar.XForms"
xmlns:xForms1="clr-namespace:Syncfusion.SfNavigationDrawer.XForms;assembly=Syncfusion.SfNavigationDrawer.XForms"
x:Class="View.PageCalendar">
<Grid>
<xForms:SfCalendar InlineToggled="Calendar_OnInlineToggled" x:Name="calendar" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" ShowInlineEvents="true"/>
<xForms1:SfNavigationDrawer x:Name="navigationDrawer" Position="Right" Transition="SlideOnTop" DrawerWidth="300">
<xForms1:SfNavigationDrawer.DrawerContentView>
<ListView x:Name="listView" BackgroundColor="White">
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell >
<StackLayout
Orientation="Horizontal" Margin="10">
<Label Text="{Binding}" VerticalOptions="Center" />
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</xForms1:SfNavigationDrawer.DrawerContentView>
</xForms1:SfNavigationDrawer>
</Grid>
</ContentPage>
but whit this i cannot interact with calendar, no selection, change date ecc, if i remove the navigationdrawer it's all ok.
i have tried to move the navigationdrawer outside the grid but i cannot find how use it for solve the problem.
Thanks in advance
Alex