Last active
July 27, 2020 11:26
Revisions
-
haavamoa revised this gist
Jul 27, 2020 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,9 @@ mc:Ignorable="d"> <dxui:ModalityLayout> <dxui:ModalityLayout.Behaviors> <dxui:SheetBehavior IsOpen="{Binding Source={x:Reference OpenSheetCheckBox}, Path=IsChecked}"> <!-- Sheet content goes here --> </dxui:SheetBehavior> </dxui:ModalityLayout.Behaviors> <CheckBox x:Name="OpenSheetCheckBox" HorizontalOptions="Center" -
haavamoa revised this gist
Jul 27, 2020 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,7 +10,7 @@ <dxui:SheetBehavior IsOpen="{Binding Source={x:Reference OpenSheetCheckBox}, Path=IsChecked}" /> </dxui:ModalityLayout.Behaviors> <CheckBox x:Name="OpenSheetCheckBox" HorizontalOptions="Center" VerticalOptions="Center" /> </dxui:ModalityLayout> </ContentPage> -
haavamoa created this gist
Jul 26, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ <ContentPage x:Class="DIPS.Xamarin.UI.Samples.Controls.Sheet.SheetPage" xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:d="http://xamarin.com/schemas/2014/forms/design" xmlns:dxui="http://dips.xamarin.ui.com" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"> <dxui:ModalityLayout> <dxui:ModalityLayout.Behaviors> <dxui:SheetBehavior IsOpen="{Binding Source={x:Reference OpenSheetCheckBox}, Path=IsChecked}" /> </dxui:ModalityLayout.Behaviors> <CheckBox x:Name="OpenSheetCheckBox" HorizontalOptions="Center" VerticalOptions="Center" /> </dxui:ModalityLayout> </ContentPage>