You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can someone show me how they are able to get the RightToLeft Slider working using only XAML?
I'd like to invoke the SliderMenu from XAML but i've been unsuccessful. I removed the following line from the .cs codebhind SlideMenu = new QuickInnerMenuView(MenuOrientation.RightToLeft);
then changed the codebehind to call the XAML quickinnerMenuView
SlideMenu = new QuickInnerMenuView(MenuOrientation.RightToLeftSlideMenu = myMenu;
It immediately threw the error that I needed the input the HeightRequest, which is odd considering i'm calling the same object which has that property defined in its constructor.
I'm now dealing with a duplicate sliders on the page. I had originally planned on constructing the entire SliderMenuView from XAML, but i once again ran into multiple items.
Can someone show me how they are able to get the RightToLeft Slider working using only XAML? I have complicated screen that would work best keeping the design consistent with XAML.
The text was updated successfully, but these errors were encountered:
Can someone show me how they are able to get the RightToLeft Slider working using only XAML?
I'd like to invoke the SliderMenu from XAML but i've been unsuccessful. I removed the following line from the .cs codebhind
SlideMenu = new QuickInnerMenuView(MenuOrientation.RightToLeft);
And replaced it with
<controls:QuickInnerMenuView x:Name="myMenu" MenuOrientations="RightToLeft"/>
then changed the codebehind to call the XAML quickinnerMenuView
SlideMenu = new QuickInnerMenuView(MenuOrientation.RightToLeftSlideMenu = myMenu;
It immediately threw the error that I needed the input the HeightRequest, which is odd considering i'm calling the same object which has that property defined in its constructor.
I'm now dealing with a duplicate sliders on the page. I had originally planned on constructing the entire SliderMenuView from XAML, but i once again ran into multiple items.
Can someone show me how they are able to get the RightToLeft Slider working using only XAML? I have complicated screen that would work best keeping the design consistent with XAML.
The text was updated successfully, but these errors were encountered: