-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainPage.xaml.cs
48 lines (42 loc) · 1.79 KB
/
MainPage.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
using System;
using Microsoft.Maui.Controls;
using System.Globalization;
namespace DrawerViewExample {
public partial class MainPage : FlyoutPage {
const string IsLandscapeOrientedPropertyName = "IsLandscapeOriented";
public static readonly BindableProperty IsLandscapeOrientedProperty = BindableProperty.Create(
IsLandscapeOrientedPropertyName,
typeof(bool),
typeof(MainPage),
defaultValue: false);
public bool IsLandscapeOriented {
get => (bool)GetValue(IsLandscapeOrientedProperty);
set => SetValue(IsLandscapeOrientedProperty, value);
}
public MainPage() {
InitializeComponent();
SizeChanged += OnSizeChanged;
carBrandList.SelectionChanged += OnSelectionChanged;
}
protected void OnSizeChanged(object sender, EventArgs args) {
IsLandscapeOriented = this.Width > this.Height;
}
void OnSelectionChanged(object sender, SelectionChangedEventArgs e) {
IsPresented = false;
}
protected override void OnAppearing() {
base.OnAppearing();
carBrandList.SelectedItem = ((MainViewModel)BindingContext).CarModelsByBrand[0];
}
}
class BoolToDrawerBehaviorConverter : IValueConverter {
public object Convert(object value, Type targetType, object parameter, CultureInfo culture) {
if (targetType != typeof(FlyoutLayoutBehavior)) return null;
bool boolValue = (bool)value;
return boolValue ? FlyoutLayoutBehavior.Split : FlyoutLayoutBehavior.Popover;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) {
throw new NotImplementedException();
}
}
}