23 references to SetProperty
Microsoft.Maui.Controls (23)
NavigationPage\NavigationPageToolbar.cs (8)
25 public override Color BarTextColor { get => GetBarTextColor(); set => SetProperty(ref _barTextColor, value); } 26 public override Color IconColor { get => GetIconColor(); set => SetProperty(ref _iconColor, value); } 27 public override string Title { get => GetTitle(); set => SetProperty(ref _title, value); } 28 public override VisualElement TitleView { get => GetTitleView(); set => SetProperty(ref _titleView, value); } 29 public override bool DrawerToggleVisible { get => _drawerToggleVisible; set => SetProperty(ref _drawerToggleVisible, value); } 184 SetProperty(ref _backButtonVisible, GetBackButtonVisible(), nameof(BackButtonVisible)); 191 SetProperty(ref _backButtonVisible, GetBackButtonVisible(), nameof(BackButtonVisible)); 198 SetProperty(ref _backButtonVisible, GetBackButtonVisible(), nameof(BackButtonVisible));
ShellToolbar.cs (1)
22 public override bool DrawerToggleVisible { get => _drawerToggleVisible; set => SetProperty(ref _drawerToggleVisible, value); }
Toolbar\Toolbar.cs (14)
35 public IEnumerable<ToolbarItem> ToolbarItems { get => _toolbarItems; set => SetProperty(ref _toolbarItems, value); } 36 public double? BarHeight { get => _barHeight; set => SetProperty(ref _barHeight, value); } 37 public string BackButtonTitle { get => _backButtonTitle; set => SetProperty(ref _backButtonTitle, value); } 38 public ImageSource TitleIcon { get => _titleIcon; set => SetProperty(ref _titleIcon, value); } 39 public Brush BarBackground { get => _barBackground; set => SetProperty(ref _barBackground, value); } 40 public virtual Color BarTextColor { get => _barTextColor; set => SetProperty(ref _barTextColor, value); } 41 public virtual Color IconColor { get => _iconColor; set => SetProperty(ref _iconColor, value); } 42 public virtual string Title { get => _title; set => SetProperty(ref _title, value); } 43 public virtual VisualElement TitleView { get => _titleView; set => SetProperty(ref _titleView, value); } 44 public bool DynamicOverflowEnabled { get => _dynamicOverflowEnabled; set => SetProperty(ref _dynamicOverflowEnabled, value); } 45 public virtual bool BackButtonVisible { get => _backButtonVisible; set => SetProperty(ref _backButtonVisible, value); } 46 public bool BackButtonEnabled { get => _backButtonEnabled; set => SetProperty(ref _backButtonEnabled, value); } 47 public virtual bool DrawerToggleVisible { get => _drawerToggleVisible; set => SetProperty(ref _drawerToggleVisible, value); } 48 public bool IsVisible { get => _isVisible; set => SetProperty(ref _isVisible, value); }