зеркало из https://github.com/DeGsoft/maui-linux.git
18 строки
387 B
C#
18 строки
387 B
C#
using Windows.UI.Xaml.Controls;
|
|
|
|
#if WINDOWS_UWP
|
|
|
|
namespace Xamarin.Forms.Platform.UWP
|
|
#else
|
|
|
|
namespace Xamarin.Forms.Platform.WinRT
|
|
#endif
|
|
{
|
|
public class ListViewGroupStyleSelector : GroupStyleSelector
|
|
{
|
|
protected override GroupStyle SelectGroupStyleCore(object group, uint level)
|
|
{
|
|
return (GroupStyle)Windows.UI.Xaml.Application.Current.Resources["ListViewGroup"];
|
|
}
|
|
}
|
|
} |