зеркало из https://github.com/DeGsoft/maui-linux.git
13 строки
407 B
C#
13 строки
407 B
C#
namespace System.Maui.Pages
|
|
{
|
|
public class DirectoryPage : DataPage
|
|
{
|
|
public static readonly BindableProperty IsGroupingEnabledProperty = BindableProperty.Create(nameof(IsGroupingEnabled), typeof(bool), typeof(DirectoryPage), default(bool));
|
|
|
|
public bool IsGroupingEnabled
|
|
{
|
|
get { return (bool)GetValue(IsGroupingEnabledProperty); }
|
|
set { SetValue(IsGroupingEnabledProperty, value); }
|
|
}
|
|
}
|
|
} |