1 write to PropertyName
Microsoft.Maui.Controls (1)
BindableProperty.cs (1)
101 PropertyName = propertyName;
747 references to PropertyName
Microsoft.Maui.Controls (386)
BindableLayout\BindableLayout.cs (2)
300 throw new NotSupportedException($"You are using an instance of {nameof(DataTemplateSelector)} to set the {nameof(BindableLayout)}.{BindableLayout.ItemTemplateProperty.PropertyName} property. Use {nameof(BindableLayout)}.{BindableLayout.ItemTemplateSelectorProperty.PropertyName} property instead to set an item template selector");
BindableObject.cs (11)
89 Application.Current?.FindMauiContext()?.CreateLogger<BindableObject>()?.LogWarning($"Cannot set the BindableProperty \"{property.PropertyName}\" because it is readonly."); 103 Application.Current?.FindMauiContext()?.CreateLogger<BindableObject>()?.LogWarning($"Cannot set the BindableProperty \"{property.PropertyName}\" because it is readonly."); 142 OnPropertyChanging(property.PropertyName); 298 Application.Current?.FindMauiContext()?.CreateLogger<BindableObject>()?.LogWarning($"Cannot set the a OneWay Binding \"{targetProperty.PropertyName}\" because it is readonly."); 493 Application.Current?.FindMauiContext()?.CreateLogger<BindableObject>()?.LogWarning($"Cannot set the BindableProperty \"{property.PropertyName}\" because it is readonly."); 521 Application.Current?.FindMauiContext()?.CreateLogger<BindableObject>()?.LogWarning($"Cannot set the BindableProperty \"{property.PropertyName}\" because it is readonly."); 568 Application.Current?.FindMauiContext()?.CreateLogger<BindableObject>()?.LogWarning($"Value is an invalid value for {property.PropertyName}"); 642 OnPropertyChanging(property.PropertyName); 675 OnPropertyChanged(property.PropertyName); 819 throw new InvalidOperationException($"The BindableProperty \"{property.PropertyName}\" is readonly."); 828 throw new ArgumentException($"Value is an invalid value for {property.PropertyName}", nameof(currentValue));
BindablePropertyConverter.cs (2)
105 if (bp.PropertyName != propertyName && !isObsolete) 166 return $"{bp.DeclaringType.Name}.{bp.PropertyName}";
BindingExpression.cs (1)
153 BindingDiagnostics.SendBindingFailure(Binding, current, target, property, "Binding", PropertyNotFoundErrorMessage, part.Content, current, target.GetType(), property.PropertyName);
Border\Border.cs (3)
312 if (propertyName == StrokeThicknessProperty.PropertyName || propertyName == StrokeShapeProperty.PropertyName) 317 else if (propertyName == StrokeDashArrayProperty.PropertyName)
BoxView\BoxView.cs (5)
58 if (propertyName == BackgroundColorProperty.PropertyName || 59 propertyName == ColorProperty.PropertyName || 60 propertyName == IsVisibleProperty.PropertyName || 61 propertyName == BackgroundProperty.PropertyName || 62 propertyName == CornerRadiusProperty.PropertyName)
Button\Button.cs (4)
410 void IImageElement.RaiseImageSourcePropertyChanged() => OnPropertyChanged(ImageSourceProperty.PropertyName); 475 if (propertyName == BorderColorProperty.PropertyName) 477 else if (propertyName == BorderWidthProperty.PropertyName) 479 else if (propertyName == ImageSourceProperty.PropertyName)
Cells\Cell.cs (5)
48 OnPropertyChanged(VisualElement.FlowDirectionProperty.PropertyName); 62 OnPropertyChanged(VisualElement.VisualProperty.PropertyName); 82 OnPropertyChanged(VisualElement.WindowProperty.PropertyName); 292 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName || 293 e.PropertyName == VisualElement.VisualProperty.PropertyName)
Cells\ImageCell.cs (1)
43 OnPropertyChanged(ImageSourceProperty.PropertyName);
Compatibility\Handlers\FlyoutPage\iOS\PhoneFlyoutPageRenderer.cs (10)
351 if (e.PropertyName == Page.IconImageSourceProperty.PropertyName || e.PropertyName == Page.TitleProperty.PropertyName) 359 else if (e.PropertyName == Microsoft.Maui.Controls.FlyoutPage.IsPresentedProperty.PropertyName) 361 else if (e.PropertyName == Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabledProperty.PropertyName) 363 else if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName || e.PropertyName == VisualElement.BackgroundProperty.PropertyName) 365 else if (e.PropertyName == Page.BackgroundImageSourceProperty.PropertyName) 367 else if (e.PropertyName == PlatformConfiguration.iOSSpecific.FlyoutPage.ApplyShadowProperty.PropertyName) 369 else if (e.PropertyName == PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHiddenProperty.PropertyName || 370 e.PropertyName == PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHiddenProperty.PropertyName)
Compatibility\Handlers\iOS\FrameRenderer.cs (8)
16 [VisualElement.BackgroundColorProperty.PropertyName] = (h, _) => h.SetupLayer(), 17 [VisualElement.BackgroundProperty.PropertyName] = (h, _) => h.SetupLayer(), 18 [Microsoft.Maui.Controls.Frame.BorderColorProperty.PropertyName] = (h, _) => h.SetupLayer(), 19 [Microsoft.Maui.Controls.Frame.CornerRadiusProperty.PropertyName] = (h, _) => h.SetupLayer(), 20 [Microsoft.Maui.Controls.Frame.IsClippedToBoundsProperty.PropertyName] = (h, _) => h.SetupLayer(), 21 [VisualElement.IsVisibleProperty.PropertyName] = (h, _) => h.SetupLayer(), 22 [Controls.Frame.HasShadowProperty.PropertyName] = (h, _) => h.UpdateShadow(), 23 [Microsoft.Maui.Controls.Frame.ContentProperty.PropertyName] = (h, _) => h.UpdateContent(),
Compatibility\Handlers\iOS\VisualElementRenderer.cs (19)
44 if (e.PropertyName == VisualElement.XProperty.PropertyName || 45 e.PropertyName == VisualElement.YProperty.PropertyName || 46 e.PropertyName == VisualElement.WidthProperty.PropertyName || 47 e.PropertyName == VisualElement.HeightProperty.PropertyName || 48 e.PropertyName == VisualElement.AnchorXProperty.PropertyName || 49 e.PropertyName == VisualElement.AnchorYProperty.PropertyName || 50 e.PropertyName == VisualElement.TranslationXProperty.PropertyName || 51 e.PropertyName == VisualElement.TranslationYProperty.PropertyName || 52 e.PropertyName == VisualElement.ScaleProperty.PropertyName || 53 e.PropertyName == VisualElement.ScaleXProperty.PropertyName || 54 e.PropertyName == VisualElement.ScaleYProperty.PropertyName || 55 e.PropertyName == VisualElement.RotationProperty.PropertyName || 56 e.PropertyName == VisualElement.RotationXProperty.PropertyName || 57 e.PropertyName == VisualElement.RotationYProperty.PropertyName || 58 e.PropertyName == VisualElement.IsVisibleProperty.PropertyName || 59 e.PropertyName == VisualElement.IsEnabledProperty.PropertyName || 60 e.PropertyName == VisualElement.InputTransparentProperty.PropertyName || 61 e.PropertyName == VisualElement.OpacityProperty.PropertyName || 63 e.PropertyName == Controls.Compatibility.Layout.CascadeInputTransparentProperty.PropertyName
Compatibility\Handlers\ListView\iOS\EntryCellRenderer.cs (8)
67 if (e.PropertyName == EntryCell.LabelProperty.PropertyName) 69 else if (e.PropertyName == EntryCell.TextProperty.PropertyName) 71 else if (e.PropertyName == EntryCell.PlaceholderProperty.PropertyName) 73 else if (e.PropertyName == EntryCell.KeyboardProperty.PropertyName) 75 else if (e.PropertyName == EntryCell.LabelColorProperty.PropertyName) 77 else if (e.PropertyName == EntryCell.HorizontalTextAlignmentProperty.PropertyName) 79 else if (e.PropertyName == Cell.IsEnabledProperty.PropertyName) 81 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName)
Compatibility\Handlers\ListView\iOS\ImageCellRenderer.cs (1)
35 if (args.PropertyName == ImageCell.ImageSourceProperty.PropertyName)
Compatibility\Handlers\ListView\iOS\ListViewRenderer.cs (11)
282 if (e.PropertyName == Microsoft.Maui.Controls.ListView.RowHeightProperty.PropertyName) 284 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.IsGroupingEnabledProperty.PropertyName) 286 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.HasUnevenRowsProperty.PropertyName) 291 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabledProperty.PropertyName) 293 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.IsRefreshingProperty.PropertyName) 295 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.SeparatorColorProperty.PropertyName) 297 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.SeparatorVisibilityProperty.PropertyName) 305 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.SelectionModeProperty.PropertyName) 307 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.RefreshControlColorProperty.PropertyName) 309 else if (e.PropertyName == ScrollView.VerticalScrollBarVisibilityProperty.PropertyName) 311 else if (e.PropertyName == ScrollView.HorizontalScrollBarVisibilityProperty.PropertyName)
Compatibility\Handlers\ListView\iOS\SwitchCellRenderer.cs (5)
69 if (e.PropertyName == SwitchCell.OnProperty.PropertyName) 74 else if (e.PropertyName == SwitchCell.TextProperty.PropertyName) 78 else if (e.PropertyName == Cell.IsEnabledProperty.PropertyName) 80 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName) 82 else if (e.PropertyName == SwitchCell.OnColorProperty.PropertyName)
Compatibility\Handlers\ListView\iOS\TextCellRenderer.cs (6)
57 if (args.PropertyName == TextCell.TextProperty.PropertyName) 62 else if (args.PropertyName == TextCell.DetailProperty.PropertyName) 67 else if (args.PropertyName == TextCell.TextColorProperty.PropertyName) 69 else if (args.PropertyName == TextCell.DetailColorProperty.PropertyName) 71 else if (args.PropertyName == Cell.IsEnabledProperty.PropertyName) 73 else if (args.PropertyName == TextCell.AutomationIdProperty.PropertyName)
Compatibility\Handlers\ListView\iOS\ViewCellRenderer.cs (1)
84 if (e.PropertyName == Cell.IsEnabledProperty.PropertyName)
Compatibility\Handlers\NavigationPage\iOS\NavigationRenderer.cs (26)
46 [PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitlesProperty.PropertyName] = NavigationPage.MapPrefersLargeTitles, 47 [PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucentProperty.PropertyName] = NavigationPage.MapIsNavigationBarTranslucent, 483 if (e.PropertyName == NavigationPage.BarBackgroundColorProperty.PropertyName || 484 e.PropertyName == NavigationPage.BarBackgroundProperty.PropertyName) 488 else if (e.PropertyName == NavigationPage.BarTextColorProperty.PropertyName 489 || e.PropertyName == StatusBarTextColorModeProperty.PropertyName) 494 else if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName) 498 else if (e.PropertyName == NavigationPage.CurrentPageProperty.PropertyName) 503 else if (e.PropertyName == IsNavigationBarTranslucentProperty.PropertyName) 507 else if (e.PropertyName == PreferredStatusBarUpdateAnimationProperty.PropertyName) 511 else if (e.PropertyName == PrefersLargeTitlesProperty.PropertyName) 515 else if (e.PropertyName == NavigationPage.BackButtonTitleProperty.PropertyName || e.PropertyName == NavigationPage.TitleProperty.PropertyName) 520 else if (e.PropertyName == HideNavigationBarSeparatorProperty.PropertyName) 524 else if (e.PropertyName == PrefersHomeIndicatorAutoHiddenProperty.PropertyName) 528 else if (e.PropertyName == PrefersStatusBarHiddenProperty.PropertyName) 613 _viewHandlerWrapper.UpdateProperty(PrefersLargeTitlesProperty.PropertyName); 618 _viewHandlerWrapper.UpdateProperty(IsNavigationBarTranslucentProperty.PropertyName); 1412 if (e.PropertyName == NavigationPage.HasNavigationBarProperty.PropertyName) 1414 else if (e.PropertyName == Page.TitleProperty.PropertyName) 1416 else if (e.PropertyName == NavigationPage.HasBackButtonProperty.PropertyName) 1418 else if (e.PropertyName == PrefersStatusBarHiddenProperty.PropertyName) 1420 else if (e.PropertyName == LargeTitleDisplayProperty.PropertyName) 1422 else if (e.PropertyName == NavigationPage.TitleIconImageSourceProperty.PropertyName || 1423 e.PropertyName == NavigationPage.TitleViewProperty.PropertyName) 1425 else if (e.PropertyName == NavigationPage.IconColorProperty.PropertyName)
Compatibility\Handlers\Shell\iOS\ShellFlyoutRenderer.cs (2)
266 if (e.PropertyName == Shell.FlyoutIsPresentedProperty.PropertyName) 275 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName)
Compatibility\Handlers\Shell\iOS\ShellItemRenderer.cs (3)
182 if (e.PropertyName == ShellItem.CurrentItemProperty.PropertyName) 254 if (e.PropertyName == BaseShellItem.IsEnabledProperty.PropertyName) 396 if (e.PropertyName == Shell.TabBarIsVisibleProperty.PropertyName)
Compatibility\Handlers\Shell\iOS\ShellPageRendererTracker.cs (11)
98 if (e.PropertyName == BackButtonBehavior.CommandParameterProperty.PropertyName) 100 else if (e.PropertyName == BackButtonBehavior.IsEnabledProperty.PropertyName) 113 if (e.PropertyName == Shell.BackButtonBehaviorProperty.PropertyName) 117 else if (e.PropertyName == Shell.SearchHandlerProperty.PropertyName) 125 else if (e.PropertyName == Page.TitleProperty.PropertyName) 129 else if (e.PropertyName == Shell.TabBarIsVisibleProperty.PropertyName) 153 if (e.PropertyName == Shell.TitleViewProperty.PropertyName) 157 else if (e.PropertyName == Page.TitleProperty.PropertyName) 617 if (e.PropertyName == SearchHandler.ClearPlaceholderEnabledProperty.PropertyName) 619 else if (e.PropertyName == SearchHandler.SearchBoxVisibilityProperty.PropertyName) 621 else if (e.PropertyName == SearchHandler.IsSearchEnabledProperty.PropertyName)
Compatibility\Handlers\Shell\iOS\ShellRenderer.cs (2)
253 if (e.PropertyName == Shell.CurrentItemProperty.PropertyName) 257 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName)
Compatibility\Handlers\Shell\iOS\ShellSectionRenderer.cs (4)
300 if (e.PropertyName == BaseShellItem.TitleProperty.PropertyName) 302 else if (e.PropertyName == BaseShellItem.IconProperty.PropertyName) 549 if (e.PropertyName == Shell.NavBarIsVisibleProperty.PropertyName) 551 else if (e.PropertyName == Shell.NavBarHasShadowProperty.PropertyName)
Compatibility\Handlers\Shell\iOS\ShellSectionRootHeader.cs (1)
259 if (e.PropertyName == ShellSection.CurrentItemProperty.PropertyName)
Compatibility\Handlers\Shell\iOS\ShellSectionRootRenderer.cs (1)
320 if (e.PropertyName == ShellSection.CurrentItemProperty.PropertyName)
Compatibility\Handlers\Shell\iOS\UIContainerCell.cs (1)
132 if (e.PropertyName == BaseShellItem.IsCheckedProperty.PropertyName)
Compatibility\Handlers\TabbedPage\iOS\TabbedRenderer.cs (12)
178 if (e.PropertyName == Page.IconImageSourceProperty.PropertyName || e.PropertyName == Page.TitleProperty.PropertyName) 224 else if (e.PropertyName == TabbedPage.BarBackgroundColorProperty.PropertyName) 226 else if (e.PropertyName == TabbedPage.BarBackgroundProperty.PropertyName) 228 else if (e.PropertyName == TabbedPage.BarTextColorProperty.PropertyName) 230 else if (e.PropertyName == PrefersStatusBarHiddenProperty.PropertyName) 232 else if (e.PropertyName == PreferredStatusBarUpdateAnimationProperty.PropertyName) 234 else if (e.PropertyName == TabbedPage.SelectedTabColorProperty.PropertyName || e.PropertyName == TabbedPage.UnselectedTabColorProperty.PropertyName) 236 else if (e.PropertyName == PrefersHomeIndicatorAutoHiddenProperty.PropertyName || e.PropertyName == PrefersStatusBarHiddenProperty.PropertyName) 238 else if (e.PropertyName == TabbedPageConfiguration.TranslucencyModeProperty.PropertyName)
Compatibility\Handlers\TableView\iOS\TableViewRenderer.cs (4)
99 if (e.PropertyName == TableView.RowHeightProperty.PropertyName) 101 else if (e.PropertyName == TableView.HasUnevenRowsProperty.PropertyName) 103 else if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName || e.PropertyName == VisualElement.BackgroundProperty.PropertyName)
Compatibility\Handlers\VisualElementRenderer.cs (1)
36 [AutomationProperties.IsInAccessibleTreeProperty.PropertyName] = MapAutomationPropertiesIsInAccessibleTree,
Compatibility\iOS\Extensions\ToolbarItemExtensions.cs (10)
74 if (e.PropertyName == MenuItem.IsEnabledProperty.PropertyName) 76 else if (e.PropertyName == MenuItem.TextProperty.PropertyName) 81 else if (e.PropertyName == MenuItem.IconImageSourceProperty.PropertyName) 92 else if (e.PropertyName == AutomationProperties.HelpTextProperty.PropertyName) 94 else if (e.PropertyName == AutomationProperties.NameProperty.PropertyName) 181 if (e.PropertyName == MenuItem.TextProperty.PropertyName) 183 else if (e.PropertyName == MenuItem.IconImageSourceProperty.PropertyName) 185 else if (e.PropertyName == MenuItem.IsEnabledProperty.PropertyName) 188 else if (e.PropertyName == AutomationProperties.HelpTextProperty.PropertyName) 190 else if (e.PropertyName == AutomationProperties.NameProperty.PropertyName)
ContentPage\ContentPage.Mapper.cs (2)
16 PageHandler.Mapper.ReplaceMapping<ContentPage, IPageHandler>(PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHiddenProperty.PropertyName, MapPrefersHomeIndicatorAutoHidden); 17 PageHandler.Mapper.ReplaceMapping<ContentPage, IPageHandler>(PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHiddenProperty.PropertyName, MapPrefersStatusBarHidden);
DataTemplate.cs (1)
84 throw new InvalidOperationException("Binding and Value found for " + kvp.Key.PropertyName);
DatePicker\DatePicker.Mapper.cs (1)
13 DatePickerHandler.Mapper.ReplaceMapping<DatePicker, IDatePickerHandler>(PlatformConfiguration.iOSSpecific.DatePicker.UpdateModeProperty.PropertyName, MapUpdateMode);
Element\Element.cs (3)
639 _pendingHandlerUpdatesFromBPSet.Add(property.PropertyName); 643 _pendingHandlerUpdatesFromBPSet.Remove(property.PropertyName); 644 UpdateHandlerValue(property.PropertyName, changed);
Element\Element.Mapper.cs (2)
13 ViewHandler.ViewMapper.ReplaceMapping<Maui.IElement, IElementHandler>(AutomationProperties.IsInAccessibleTreeProperty.PropertyName, MapAutomationPropertiesIsInAccessibleTree); 14 ViewHandler.ViewMapper.ReplaceMapping<Maui.IElement, IElementHandler>(AutomationProperties.ExcludedWithChildrenProperty.PropertyName, MapAutomationPropertiesExcludedWithChildren);
Entry\Entry.Mapper.cs (2)
17 EntryHandler.Mapper.ReplaceMapping<Entry, IEntryHandler>(PlatformConfiguration.iOSSpecific.Entry.CursorColorProperty.PropertyName, MapCursorColor); 18 EntryHandler.Mapper.ReplaceMapping<Entry, IEntryHandler>(PlatformConfiguration.iOSSpecific.Entry.AdjustsFontSizeToFitWidthProperty.PropertyName, MapAdjustsFontSizeToFitWidth);
FileImageSource.cs (1)
47 if (propertyName == FileProperty.PropertyName)
Handlers\Items\CarouselViewHandler.cs (5)
20 [Controls.CarouselView.IsSwipeEnabledProperty.PropertyName] = MapIsSwipeEnabled, 21 [Controls.CarouselView.PeekAreaInsetsProperty.PropertyName] = MapPeekAreaInsets, 22 [Controls.CarouselView.IsBounceEnabledProperty.PropertyName] = MapIsBounceEnabled, 23 [Controls.CarouselView.PositionProperty.PropertyName] = MapPosition, 24 [Controls.CarouselView.CurrentItemProperty.PropertyName] = MapCurrentItem
Handlers\Items\GroupableItemsViewHandler.cs (1)
22 [GroupableItemsView.IsGroupedProperty.PropertyName] = MapIsGrouped,
Handlers\Items\iOS\TemplatedCell.cs (2)
258 if (setter.Property.PropertyName == VisualElement.BackgroundColorProperty.PropertyName)
Handlers\Items\ItemsViewHandler.cs (9)
23 [Controls.ItemsView.ItemsSourceProperty.PropertyName] = MapItemsSource, 24 [Controls.ItemsView.HorizontalScrollBarVisibilityProperty.PropertyName] = MapHorizontalScrollBarVisibility, 25 [Controls.ItemsView.VerticalScrollBarVisibilityProperty.PropertyName] = MapVerticalScrollBarVisibility, 26 [Controls.ItemsView.ItemTemplateProperty.PropertyName] = MapItemTemplate, 27 [Controls.ItemsView.EmptyViewProperty.PropertyName] = MapEmptyView, 28 [Controls.ItemsView.EmptyViewTemplateProperty.PropertyName] = MapEmptyViewTemplate, 29 [Controls.ItemsView.FlowDirectionProperty.PropertyName] = MapFlowDirection, 30 [Controls.ItemsView.IsVisibleProperty.PropertyName] = MapIsVisible, 31 [Controls.ItemsView.ItemsUpdatingScrollModeProperty.PropertyName] = MapItemsUpdatingScrollMode
Handlers\Items\ReorderableItemsViewHandler.cs (1)
22 [ReorderableItemsView.CanReorderItemsProperty.PropertyName] = MapCanReorderItems,
Handlers\Items\SelectableItemsViewHandler.cs (3)
23 [SelectableItemsView.SelectedItemProperty.PropertyName] = MapSelectedItem, 24 [SelectableItemsView.SelectedItemsProperty.PropertyName] = MapSelectedItems, 25 [SelectableItemsView.SelectionModeProperty.PropertyName] = MapSelectionMode,
Handlers\Items\StructuredItemsViewHandler.cs (6)
28 [StructuredItemsView.HeaderTemplateProperty.PropertyName] = MapHeaderTemplate, 29 [StructuredItemsView.FooterTemplateProperty.PropertyName] = MapFooterTemplate, 30 [StructuredItemsView.HeaderProperty.PropertyName] = MapHeaderTemplate, 31 [StructuredItemsView.FooterProperty.PropertyName] = MapFooterTemplate, 32 [StructuredItemsView.ItemsLayoutProperty.PropertyName] = MapItemsLayout, 33 [StructuredItemsView.ItemSizingStrategyProperty.PropertyName] = MapItemSizingStrategy
Handlers\Items2\CarouselViewHandler2.iOS.cs (5)
26 [Controls.CarouselView.IsSwipeEnabledProperty.PropertyName] = MapIsSwipeEnabled, 27 [Controls.CarouselView.PeekAreaInsetsProperty.PropertyName] = MapPeekAreaInsets, 28 [Controls.CarouselView.IsBounceEnabledProperty.PropertyName] = MapIsBounceEnabled, 29 [Controls.CarouselView.PositionProperty.PropertyName] = MapPosition, 30 [Controls.CarouselView.CurrentItemProperty.PropertyName] = MapCurrentItem
Handlers\Items2\CollectionViewHandler2.iOS.cs (9)
50 [ReorderableItemsView.CanReorderItemsProperty.PropertyName] = MapCanReorderItems, 51 [GroupableItemsView.IsGroupedProperty.PropertyName] = MapIsGrouped, 52 [SelectableItemsView.SelectedItemProperty.PropertyName] = MapSelectedItem, 53 [SelectableItemsView.SelectedItemsProperty.PropertyName] = MapSelectedItems, 54 [SelectableItemsView.SelectionModeProperty.PropertyName] = MapSelectionMode, 55 [StructuredItemsView.HeaderTemplateProperty.PropertyName] = MapHeaderTemplate, 56 [StructuredItemsView.FooterTemplateProperty.PropertyName] = MapFooterTemplate, 57 [StructuredItemsView.HeaderProperty.PropertyName] = MapHeaderTemplate, 58 [StructuredItemsView.FooterProperty.PropertyName] = MapFooterTemplate,
Handlers\Items2\iOS\TemplatedCell2.cs (2)
167 if (setter.Property.PropertyName == VisualElement.BackgroundColorProperty.PropertyName)
Handlers\Items2\ItemsViewHandler2.iOS.cs (9)
28 [Controls.ItemsView.ItemsSourceProperty.PropertyName] = MapItemsSource, 29 [Controls.ItemsView.HorizontalScrollBarVisibilityProperty.PropertyName] = MapHorizontalScrollBarVisibility, 30 [Controls.ItemsView.VerticalScrollBarVisibilityProperty.PropertyName] = MapVerticalScrollBarVisibility, 31 [Controls.ItemsView.ItemTemplateProperty.PropertyName] = MapItemTemplate, 32 [Controls.ItemsView.EmptyViewProperty.PropertyName] = MapEmptyView, 33 [Controls.ItemsView.EmptyViewTemplateProperty.PropertyName] = MapEmptyViewTemplate, 34 [Controls.ItemsView.FlowDirectionProperty.PropertyName] = MapFlowDirection, 35 [Controls.ItemsView.IsVisibleProperty.PropertyName] = MapIsVisible, 36 [Controls.ItemsView.ItemsUpdatingScrollModeProperty.PropertyName] = MapItemsUpdatingScrollMode
ImageButton\ImageButton.cs (2)
256 if (propertyName == BorderWidthProperty.PropertyName) 258 else if (propertyName == BorderColorProperty.PropertyName)
IndicatorView\IndicatorStackLayout.cs (8)
34 if (e.PropertyName == IndicatorView.IndicatorsShapeProperty.PropertyName 35 || e.PropertyName == IndicatorView.IndicatorTemplateProperty.PropertyName) 39 if (e.PropertyName == IndicatorView.MaximumVisibleProperty.PropertyName 40 || e.PropertyName == IndicatorView.PositionProperty.PropertyName 41 || e.PropertyName == IndicatorView.HideSingleProperty.PropertyName 42 || e.PropertyName == IndicatorView.IndicatorColorProperty.PropertyName 43 || e.PropertyName == IndicatorView.SelectedIndicatorColorProperty.PropertyName 44 || e.PropertyName == IndicatorView.IndicatorSizeProperty.PropertyName)
Interactivity\PropertyCondition.cs (5)
42 return Property.DeclaringType.GetRuntimeProperty(Property.PropertyName); 46 throw new XamlParseException($"Multiple properties with name '{Property.DeclaringType}.{Property.PropertyName}' found.", new XmlLineInfo(), innerException: e); 72 return Property.DeclaringType.GetRuntimeProperty(Property.PropertyName); 76 throw new XamlParseException($"Multiple properties with name '{Property.DeclaringType}.{Property.PropertyName}' found.", new XmlLineInfo(), innerException: e); 113 if (e.PropertyName != Property.PropertyName)
Internals\PropertyPropagationExtensions.cs (9)
11 if (propertyName == null || propertyName == VisualElement.FlowDirectionProperty.PropertyName) 14 if (propertyName == null || propertyName == VisualElement.VisualProperty.PropertyName) 17 if (propertyName == null || propertyName == VisualElement.WindowProperty.PropertyName) 20 if (propertyName == null || propertyName == Shell.NavBarHasShadowProperty.PropertyName) 23 if (propertyName == null || propertyName == Shell.TabBarIsVisibleProperty.PropertyName) 26 if (propertyName == null || propertyName == Shell.NavBarIsVisibleProperty.PropertyName) 39 if (propertyName == null || propertyName == VisualElement.FlowDirectionProperty.PropertyName) 42 if (propertyName == null || propertyName == VisualElement.VisualProperty.PropertyName) 45 if (propertyName == null || propertyName == VisualElement.WindowProperty.PropertyName)
Items\SelectableItemsView.cs (1)
149 OnPropertyChanged(SelectedItemsProperty.PropertyName);
LegacyLayouts\AbsoluteLayout.cs (2)
154 if (e.PropertyName == LayoutFlagsProperty.PropertyName || e.PropertyName == LayoutBoundsProperty.PropertyName)
LegacyLayouts\FlexLayout.cs (5)
362 if (e.PropertyName == WidthRequestProperty.PropertyName 363 || e.PropertyName == HeightRequestProperty.PropertyName) 374 if (e.PropertyName == MarginProperty.PropertyName) 388 if (e.PropertyName == PaddingProperty.PropertyName) 402 if (e.PropertyName == IsVisibleProperty.PropertyName)
LegacyLayouts\Grid.cs (4)
256 if (e.PropertyName == ColumnProperty.PropertyName || e.PropertyName == ColumnSpanProperty.PropertyName || e.PropertyName == RowProperty.PropertyName || 257 e.PropertyName == RowSpanProperty.PropertyName)
Menu\MenuItem.cs (2)
171 if (propertyName == null || propertyName == IsEnabledProperty.PropertyName) 184 ppc.PropagatePropertyChanged(IsEnabledProperty.PropertyName);
Menu\MenuItemTracker.cs (2)
170 if (propertyChangedEventArgs.PropertyName == NavigationPage.CurrentPageProperty.PropertyName || 171 propertyChangedEventArgs.PropertyName == FlyoutPage.IsPresentedProperty.PropertyName ||
MultiPage.cs (2)
147 if (propertyName == ItemsSourceProperty.PropertyName) 149 else if (propertyName == SelectedItemProperty.PropertyName)
NavigationPage\NavigationPage.Mapper.cs (2)
13 NavigationViewHandler.Mapper.ReplaceMapping<NavigationPage, NavigationViewHandler>(PlatformConfiguration.iOSSpecific.NavigationPage.PrefersLargeTitlesProperty.PropertyName, MapPrefersLargeTitles); 14 NavigationViewHandler.Mapper.ReplaceMapping<NavigationPage, NavigationViewHandler>(PlatformConfiguration.iOSSpecific.NavigationPage.IsNavigationBarTranslucentProperty.PropertyName, MapIsNavigationBarTranslucent);
Picker\Picker.Mapper.cs (1)
13 PickerHandler.Mapper.ReplaceMapping<Picker, IPickerHandler>(PlatformConfiguration.iOSSpecific.Picker.UpdateModeProperty.PropertyName, MapUpdateMode);
Platform\iOS\ControlsModalWrapper.cs (1)
183 if (e.PropertyName == Page.BackgroundColorProperty.PropertyName)
Platform\ModalNavigationManager\ModalNavigationManager.iOS.cs (1)
34 if (e.PropertyName != Window.PageProperty.PropertyName)
PropertyChangedEventArgsExtensions.cs (15)
15 return args.PropertyName == property.PropertyName; 24 return args.PropertyName == p0.PropertyName || 25 args.PropertyName == p1.PropertyName; 34 return args.PropertyName == p0.PropertyName || 35 args.PropertyName == p1.PropertyName || 36 args.PropertyName == p2.PropertyName; 45 return args.PropertyName == p0.PropertyName || 46 args.PropertyName == p1.PropertyName || 47 args.PropertyName == p2.PropertyName || 48 args.PropertyName == p3.PropertyName; 57 return args.PropertyName == p0.PropertyName || 58 args.PropertyName == p1.PropertyName || 59 args.PropertyName == p2.PropertyName || 60 args.PropertyName == p3.PropertyName || 61 args.PropertyName == p4.PropertyName;
RadioButton\RadioButton.cs (1)
640 Application.Current?.FindMauiContext()?.CreateLogger<RadioButton>()?.LogWarning("Warning - {RuntimePlatform} does not support View as the {PropertyName} property of RadioButton; the return value of the ToString() method will be displayed instead.", DeviceInfo.Platform, ContentProperty.PropertyName);
RefreshView\RefreshView.cs (1)
135 if (IsEnabledProperty.PropertyName == propertyName &&
ScrollView\ScrollView.Mapper.cs (1)
13 ScrollViewHandler.Mapper.ReplaceMapping<ScrollView, IScrollViewHandler>(PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouchesProperty.PropertyName, MapShouldDelayContentTouches);
SearchBar\SearchBar.Mapper.cs (1)
13 SearchBarHandler.Mapper.ReplaceMapping<SearchBar, ISearchBarHandler>(PlatformConfiguration.iOSSpecific.SearchBar.SearchBarStyleProperty.PropertyName, MapSearchBarStyle);
Setter.cs (4)
39 minfo = Property.DeclaringType.GetRuntimeProperty(Property.PropertyName); 43 throw new XamlParseException($"Multiple properties with name '{Property.DeclaringType}.{Property.PropertyName}' found.", serviceProvider, innerException: e); 49 return Property.DeclaringType.GetRuntimeMethod("Get" + Property.PropertyName, new[] { typeof(BindableObject) }); 53 throw new XamlParseException($"Multiple methods with name '{Property.DeclaringType}.Get{Property.PropertyName}' found.", serviceProvider, innerException: e);
Shapes\Ellipse.cs (4)
21 if (propertyName == XProperty.PropertyName || 22 propertyName == YProperty.PropertyName || 23 propertyName == WidthProperty.PropertyName || 24 propertyName == HeightProperty.PropertyName)
Shapes\Line.cs (4)
72 if (propertyName == X1Property.PropertyName || 73 propertyName == Y1Property.PropertyName || 74 propertyName == X2Property.PropertyName || 75 propertyName == Y2Property.PropertyName)
Shapes\Path.cs (2)
91 if (args.PropertyName == Transform.ValueProperty.PropertyName) 102 if (propertyName == DataProperty.PropertyName)
Shapes\Polygon.cs (2)
48 if (propertyName == PointsProperty.PropertyName || 49 propertyName == FillRuleProperty.PropertyName)
Shapes\Polyline.cs (2)
47 if (propertyName == PointsProperty.PropertyName || 48 propertyName == FillRuleProperty.PropertyName)
Shapes\Rectangle.cs (2)
44 if (propertyName == RadiusXProperty.PropertyName || 45 propertyName == RadiusYProperty.PropertyName)
Shapes\RoundRectangle.cs (1)
52 if (propertyName == CornerRadiusProperty.PropertyName)
Shell\BaseShellItem.cs (3)
210 OnPropertyChanged(VisualElement.VisualProperty.PropertyName); 242 if (propertyName == Shell.ItemTemplateProperty.PropertyName || propertyName == nameof(Parent)) 288 OnPropertyChanged(VisualElement.FlowDirectionProperty.PropertyName);
Shell\MenuShellItem.cs (5)
32 if (e.PropertyName == Shell.MenuItemTemplateProperty.PropertyName) 34 else if (e.PropertyName == TitleProperty.PropertyName) 35 OnPropertyChanged(MenuItem.TextProperty.PropertyName); 36 else if (e.PropertyName == Shell.FlyoutItemIsVisibleProperty.PropertyName) 45 else if (propertyName == Shell.FlyoutItemIsVisibleProperty.PropertyName && MenuItem != null)
Shell\Shell.cs (5)
77 shell?.OnPropertyChanged(NavBarIsVisibleProperty.PropertyName); 894 if (e.PropertyName == CurrentItemProperty.PropertyName) 1603 CurrentItem?.Handler?.UpdateValue(Shell.TabBarIsVisibleProperty.PropertyName); 1613 CurrentItem?.Handler?.UpdateValue(Shell.TabBarIsVisibleProperty.PropertyName); 2000 if (propertyName == Shell.FlyoutIsPresentedProperty.PropertyName)
Shell\ShellContent.cs (2)
187 if (e.PropertyName == Page.IsVisibleProperty.PropertyName) 266 if (propertyName == WindowProperty.PropertyName)
StreamImageSource.cs (1)
28 if (propertyName == StreamProperty.PropertyName)
StyleSheets\Style.cs (4)
104 minfo = property.DeclaringType.GetRuntimeProperty(property.PropertyName); 108 throw new XamlParseException($"Multiple properties with name '{property.DeclaringType}.{property.PropertyName}' found.", serviceProvider, innerException: e); 114 return property.DeclaringType.GetRuntimeMethod("Get" + property.PropertyName, new[] { typeof(BindableObject) }); 118 throw new XamlParseException($"Multiple methods with name '{property.DeclaringType}.Get{property.PropertyName}' found.", serviceProvider, innerException: e);
SwipeView\SwipeView.cs (2)
280 if (e.PropertyName == IsEnabledProperty.PropertyName) 282 else if (e.PropertyName == MarginProperty.PropertyName)
Switch\Switch.cs (1)
88 if (propertyName == IsToggledProperty.PropertyName)
TabbedPage\TabbedPage.cs (3)
110 Handler?.UpdateValue(TabbedPage.ItemsSourceProperty.PropertyName); 127 if (e.PropertyName == Page.TitleProperty.PropertyName) 128 Handler?.UpdateValue(TabbedPage.ItemsSourceProperty.PropertyName);
TableView\TableRoot.cs (2)
34 if (propertyChangedEventArgs.PropertyName == TitleProperty.PropertyName) 36 OnPropertyChanged(TitleProperty.PropertyName);
TableView\TableView.cs (1)
167 if (e.PropertyName == TableSectionBase.TitleProperty.PropertyName)
TemplatedItemsList.cs (7)
670 if (_itemSourceProperty != null && e.PropertyName == _itemSourceProperty.PropertyName) 672 else if (e.PropertyName == _itemTemplateProperty.PropertyName) 674 else if (ProgressiveLoadingProperty != null && e.PropertyName == ProgressiveLoadingProperty.PropertyName) 676 else if (GroupHeaderTemplateProperty != null && e.PropertyName == GroupHeaderTemplateProperty.PropertyName) 678 else if (IsGroupingEnabledProperty != null && e.PropertyName == IsGroupingEnabledProperty.PropertyName) 1311 if (e.PropertyName != ShortNameProperty.PropertyName) 1325 if (e.PropertyName != ShortNameProperty.PropertyName)
TimePicker\TimePicker.Mapper.cs (1)
13 TimePickerHandler.Mapper.ReplaceMapping<TimePicker, ITimePickerHandler>(PlatformConfiguration.iOSSpecific.TimePicker.UpdateModeProperty.PropertyName, MapUpdateMode);
VisualElement\VisualElement.cs (11)
202 OnPropertyChanged(VisualProperty.PropertyName); 473 OnPropertyChanged(FlowDirectionProperty.PropertyName); 1608 (self as IPropertyPropagationController)?.PropagatePropertyChanged(VisualElement.VisualProperty.PropertyName); 1628 (bindable as IPropertyPropagationController)?.PropagatePropertyChanged(VisualElement.FlowDirectionProperty.PropertyName); 1651 (bindable as IPropertyPropagationController)?.PropagatePropertyChanged(VisualElement.IsEnabledProperty.PropertyName); 1667 (bindable as IPropertyPropagationController)?.PropagatePropertyChanged(VisualElement.InputTransparentProperty.PropertyName); 1726 if (propertyName == null || propertyName == IsEnabledProperty.PropertyName) 1729 if (propertyName == null || propertyName == InputTransparentProperty.PropertyName) 1753 (this as IPropertyPropagationController)?.PropagatePropertyChanged(VisualElement.InputTransparentProperty.PropertyName); 2005 if (valueChanged && this.Batched && (property == HeightProperty.PropertyName || property == WidthProperty.PropertyName))
VisualElement\VisualElement.Mapper.cs (3)
28 viewMapper.ReplaceMapping<IView, IViewHandler>(SemanticProperties.DescriptionProperty.PropertyName, MapSemanticPropertiesDescriptionProperty); 29 viewMapper.ReplaceMapping<IView, IViewHandler>(SemanticProperties.HintProperty.PropertyName, MapSemanticPropertiesHintProperty); 30 viewMapper.ReplaceMapping<IView, IViewHandler>(SemanticProperties.HeadingLevelProperty.PropertyName, MapSemanticPropertiesHeadingLevelProperty);
WebView\WebView.cs (1)
228 OnPropertyChanged(SourceProperty.PropertyName);
Window\Window.cs (2)
365 OnPropertyChanged(FlowDirectionProperty.PropertyName); 383 FlowDirectionProperty.PropertyName,
Microsoft.Maui.Controls.Compatibility (344)
iOS\Cells\EntryCellRenderer.cs (8)
62 if (e.PropertyName == EntryCell.LabelProperty.PropertyName) 64 else if (e.PropertyName == EntryCell.TextProperty.PropertyName) 66 else if (e.PropertyName == EntryCell.PlaceholderProperty.PropertyName) 68 else if (e.PropertyName == EntryCell.KeyboardProperty.PropertyName) 70 else if (e.PropertyName == EntryCell.LabelColorProperty.PropertyName) 72 else if (e.PropertyName == EntryCell.HorizontalTextAlignmentProperty.PropertyName) 74 else if (e.PropertyName == Cell.IsEnabledProperty.PropertyName) 76 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName)
iOS\Cells\ImageCellRenderer.cs (1)
38 if (args.PropertyName == ImageCell.ImageSourceProperty.PropertyName)
iOS\Cells\SwitchCellRenderer.cs (5)
70 if (e.PropertyName == SwitchCell.OnProperty.PropertyName) 75 else if (e.PropertyName == SwitchCell.TextProperty.PropertyName) 77 else if (e.PropertyName == Cell.IsEnabledProperty.PropertyName) 79 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName) 81 else if (e.PropertyName == SwitchCell.OnColorProperty.PropertyName)
iOS\Cells\TextCellRenderer.cs (6)
58 if (args.PropertyName == TextCell.TextProperty.PropertyName) 63 else if (args.PropertyName == TextCell.DetailProperty.PropertyName) 68 else if (args.PropertyName == TextCell.TextColorProperty.PropertyName) 70 else if (args.PropertyName == TextCell.DetailColorProperty.PropertyName) 72 else if (args.PropertyName == Cell.IsEnabledProperty.PropertyName) 74 else if (args.PropertyName == TextCell.AutomationIdProperty.PropertyName)
iOS\Cells\ViewCellRenderer.cs (1)
80 if (e.PropertyName == Cell.IsEnabledProperty.PropertyName)
iOS\CollectionView\TemplatedCell.cs (2)
223 if (setter.Property.PropertyName == VisualElement.BackgroundColorProperty.PropertyName)
iOS\iOSAppLinks.cs (1)
80 if (e.PropertyName == AppLinkEntry.IsLinkActiveProperty.PropertyName)
iOS\Renderers\ActivityIndicatorRenderer.cs (2)
71 if (e.PropertyName == ActivityIndicator.ColorProperty.PropertyName) 73 else if (e.PropertyName == ActivityIndicator.IsRunningProperty.PropertyName)
iOS\Renderers\BorderElementManager.cs (3)
32 if (e.PropertyName == Button.BorderWidthProperty.PropertyName || e.PropertyName == Button.CornerRadiusProperty.PropertyName || e.PropertyName == Button.BorderColorProperty.PropertyName)
iOS\Renderers\BoxRenderer.cs (3)
78 if (e.PropertyName == BoxView.ColorProperty.PropertyName) 80 else if (e.PropertyName == BoxView.CornerRadiusProperty.PropertyName) 82 else if (e.PropertyName == VisualElement.IsVisibleProperty.PropertyName && Element.IsVisible)
iOS\Renderers\ButtonLayoutManager.cs (8)
172 if (e.PropertyName == Button.PaddingProperty.PropertyName) 174 else if (e.PropertyName == Button.ImageSourceProperty.PropertyName) 176 else if (e.PropertyName == Button.TextProperty.PropertyName || 177 e.PropertyName == Button.TextTransformProperty.PropertyName || 178 e.PropertyName == Button.CharacterSpacingProperty.PropertyName) 180 else if (e.PropertyName == Button.ContentLayoutProperty.PropertyName) 182 else if (e.PropertyName == Button.BorderWidthProperty.PropertyName && _borderAdjustsPadding) 184 else if (e.PropertyName == Button.LineBreakModeProperty.PropertyName)
iOS\Renderers\ButtonRenderer.cs (5)
138 if (e.PropertyName == Button.TextColorProperty.PropertyName) 140 else if (e.PropertyName == FontElement.FontAttributesProperty.PropertyName 141 || e.PropertyName == FontElement.FontAutoScalingEnabledProperty.PropertyName 142 || e.PropertyName == FontElement.FontFamilyProperty.PropertyName 143 || e.PropertyName == FontElement.FontSizeProperty.PropertyName)
iOS\Renderers\CarouselPageRenderer.cs (3)
304 else if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName || e.PropertyName == VisualElement.BackgroundProperty.PropertyName) 306 else if (e.PropertyName == Page.BackgroundImageSourceProperty.PropertyName)
iOS\Renderers\DatePickerRenderer.cs (11)
133 if (e.PropertyName == DatePicker.DateProperty.PropertyName || e.PropertyName == DatePicker.FormatProperty.PropertyName) 138 else if (e.PropertyName == DatePicker.MinimumDateProperty.PropertyName) 140 else if (e.PropertyName == DatePicker.MaximumDateProperty.PropertyName) 142 else if (e.PropertyName == DatePicker.CharacterSpacingProperty.PropertyName) 144 else if (e.PropertyName == DatePicker.TextColorProperty.PropertyName || e.PropertyName == VisualElement.IsEnabledProperty.PropertyName) 146 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName) 148 else if (e.PropertyName == DatePicker.FontAttributesProperty.PropertyName || 149 e.PropertyName == DatePicker.FontFamilyProperty.PropertyName || e.PropertyName == DatePicker.FontSizeProperty.PropertyName)
iOS\Renderers\EditorRenderer.cs (15)
237 else if (e.PropertyName == Microsoft.Maui.Controls.InputView.KeyboardProperty.PropertyName) 239 else if (e.PropertyName == Microsoft.Maui.Controls.InputView.IsSpellCheckEnabledProperty.PropertyName) 241 else if (e.PropertyName == Editor.IsTextPredictionEnabledProperty.PropertyName) 243 else if (e.PropertyName == VisualElement.IsEnabledProperty.PropertyName || e.PropertyName == Microsoft.Maui.Controls.InputView.IsReadOnlyProperty.PropertyName) 245 else if (e.PropertyName == Editor.TextColorProperty.PropertyName) 247 else if (e.PropertyName == Editor.FontAttributesProperty.PropertyName) 249 else if (e.PropertyName == Editor.FontFamilyProperty.PropertyName) 251 else if (e.PropertyName == Editor.FontSizeProperty.PropertyName) 253 else if (e.PropertyName == Editor.CharacterSpacingProperty.PropertyName) 255 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName) 257 else if (e.PropertyName == Microsoft.Maui.Controls.InputView.MaxLengthProperty.PropertyName) 259 else if (e.PropertyName == Editor.PlaceholderProperty.PropertyName) 264 else if (e.PropertyName == Editor.PlaceholderColorProperty.PropertyName) 266 else if (e.PropertyName == Editor.AutoSizeProperty.PropertyName)
iOS\Renderers\EntryRenderer.cs (23)
162 if (e.PropertyName == Entry.PlaceholderProperty.PropertyName || e.PropertyName == Entry.PlaceholderColorProperty.PropertyName) 164 else if (e.PropertyName == Entry.IsPasswordProperty.PropertyName) 171 else if (e.PropertyName == Entry.TextColorProperty.PropertyName) 173 else if (e.PropertyName == Entry.CharacterSpacingProperty.PropertyName) 175 else if (e.PropertyName == Microsoft.Maui.Controls.InputView.KeyboardProperty.PropertyName) 177 else if (e.PropertyName == Microsoft.Maui.Controls.InputView.IsSpellCheckEnabledProperty.PropertyName) 179 else if (e.PropertyName == Entry.IsTextPredictionEnabledProperty.PropertyName) 181 else if (e.PropertyName == Entry.HorizontalTextAlignmentProperty.PropertyName) 183 else if (e.PropertyName == Entry.VerticalTextAlignmentProperty.PropertyName) 185 else if (e.PropertyName == Entry.FontAttributesProperty.PropertyName) 187 else if (e.PropertyName == Entry.FontFamilyProperty.PropertyName) 189 else if (e.PropertyName == Entry.FontSizeProperty.PropertyName) 191 else if (e.PropertyName == VisualElement.IsEnabledProperty.PropertyName) 196 else if (e.PropertyName == Specifics.AdjustsFontSizeToFitWidthProperty.PropertyName) 198 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName) 200 else if (e.PropertyName == Microsoft.Maui.Controls.InputView.MaxLengthProperty.PropertyName) 202 else if (e.PropertyName == Entry.ReturnTypeProperty.PropertyName) 204 else if (e.PropertyName == Entry.CursorPositionProperty.PropertyName) 206 else if (e.PropertyName == Entry.SelectionLengthProperty.PropertyName) 208 else if (e.PropertyName == Specifics.CursorColorProperty.PropertyName) 210 else if (e.PropertyName == Microsoft.Maui.Controls.InputView.IsReadOnlyProperty.PropertyName) 212 else if (e.PropertyName == Entry.ClearButtonVisibilityProperty.PropertyName)
iOS\Renderers\FrameRenderer.cs (7)
49 if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName || 50 e.PropertyName == VisualElement.BackgroundProperty.PropertyName || 51 e.PropertyName == Microsoft.Maui.Controls.Frame.BorderColorProperty.PropertyName || 52 e.PropertyName == Microsoft.Maui.Controls.Frame.HasShadowProperty.PropertyName || 53 e.PropertyName == Microsoft.Maui.Controls.Frame.CornerRadiusProperty.PropertyName || 54 e.PropertyName == Microsoft.Maui.Controls.Frame.IsClippedToBoundsProperty.PropertyName || 55 e.PropertyName == VisualElement.IsVisibleProperty.PropertyName)
iOS\Renderers\ImageButtonRenderer.cs (2)
69 if (e.PropertyName == ImageButton.SourceProperty.PropertyName) 71 else if (e.PropertyName == ImageButton.PaddingProperty.PropertyName)
iOS\Renderers\ImageElementManager.cs (3)
102 if (e.PropertyName == Image.IsOpaqueProperty.PropertyName) 104 else if (e.PropertyName == Image.AspectProperty.PropertyName) 106 else if (e.PropertyName == Image.IsAnimationPlayingProperty.PropertyName)
iOS\Renderers\ImageRenderer.cs (1)
72 if (e.PropertyName == Image.SourceProperty.PropertyName)
iOS\Renderers\IndicatorViewRenderer.cs (8)
80 if (e.PropertyName == IndicatorSizeProperty.PropertyName) 82 if (e.PropertyName == IndicatorsShapeProperty.PropertyName || 83 e.PropertyName == ItemsSourceProperty.PropertyName) 85 else if (e.PropertyName == IndicatorTemplateProperty.PropertyName) 87 if (e.PropertyName == IndicatorColorProperty.PropertyName) 89 else if (e.PropertyName == SelectedIndicatorColorProperty.PropertyName) 91 else if (e.PropertyName == CountProperty.PropertyName) 93 else if (e.PropertyName == HideSingleProperty.PropertyName)
iOS\Renderers\LabelRenderer.cs (27)
40 Label.TextProperty.PropertyName, 41 Label.TextColorProperty.PropertyName, 42 Label.FontAttributesProperty.PropertyName, 43 Label.FontFamilyProperty.PropertyName, 44 Label.FontSizeProperty.PropertyName, 45 Label.FormattedTextProperty.PropertyName, 46 Label.LineBreakModeProperty.PropertyName, 47 Label.LineHeightProperty.PropertyName, 48 Label.PaddingProperty.PropertyName, 49 Label.TextTypeProperty.PropertyName 200 if (e.PropertyName == Label.HorizontalTextAlignmentProperty.PropertyName) 202 else if (e.PropertyName == Label.VerticalTextAlignmentProperty.PropertyName) 204 else if (e.PropertyName == Label.TextColorProperty.PropertyName) 206 else if (e.PropertyName == Label.FontAttributesProperty.PropertyName || e.PropertyName == Label.FontFamilyProperty.PropertyName || e.PropertyName == Label.FontSizeProperty.PropertyName) 212 else if (e.PropertyName == Label.TextProperty.PropertyName) 218 else if (e.PropertyName == Label.CharacterSpacingProperty.PropertyName) 220 else if (e.PropertyName == Label.TextDecorationsProperty.PropertyName) 222 else if (e.PropertyName == Label.FormattedTextProperty.PropertyName) 227 else if (e.PropertyName == Label.LineBreakModeProperty.PropertyName) 229 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName) 231 else if (e.PropertyName == Label.LineHeightProperty.PropertyName) 233 else if (e.PropertyName == Label.MaxLinesProperty.PropertyName) 235 else if (e.PropertyName == Label.PaddingProperty.PropertyName) 237 else if (e.PropertyName == Label.TextTypeProperty.PropertyName) 239 else if (e.PropertyName == Label.TextTransformProperty.PropertyName)
iOS\Renderers\ListViewRenderer.cs (11)
325 if (e.PropertyName == Microsoft.Maui.Controls.ListView.RowHeightProperty.PropertyName) 327 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.IsGroupingEnabledProperty.PropertyName) 329 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.HasUnevenRowsProperty.PropertyName) 334 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.IsPullToRefreshEnabledProperty.PropertyName) 336 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.IsRefreshingProperty.PropertyName) 338 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.SeparatorColorProperty.PropertyName) 340 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.SeparatorVisibilityProperty.PropertyName) 348 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.SelectionModeProperty.PropertyName) 350 else if (e.PropertyName == Microsoft.Maui.Controls.ListView.RefreshControlColorProperty.PropertyName) 352 else if (e.PropertyName == ScrollView.VerticalScrollBarVisibilityProperty.PropertyName) 354 else if (e.PropertyName == ScrollView.HorizontalScrollBarVisibilityProperty.PropertyName)
iOS\Renderers\NavigationRenderer.cs (19)
451 if (e.PropertyName == NavigationPage.BarBackgroundColorProperty.PropertyName || 452 e.PropertyName == NavigationPage.BarBackgroundProperty.PropertyName) 456 else if (e.PropertyName == NavigationPage.BarTextColorProperty.PropertyName 457 || e.PropertyName == StatusBarTextColorModeProperty.PropertyName) 462 else if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName) 466 else if (e.PropertyName == NavigationPage.CurrentPageProperty.PropertyName) 471 else if (e.PropertyName == IsNavigationBarTranslucentProperty.PropertyName) 475 else if (e.PropertyName == PreferredStatusBarUpdateAnimationProperty.PropertyName) 479 else if (e.PropertyName == PrefersLargeTitlesProperty.PropertyName) 483 else if (e.PropertyName == NavigationPage.BackButtonTitleProperty.PropertyName) 488 else if (e.PropertyName == HideNavigationBarSeparatorProperty.PropertyName) 1160 if (e.PropertyName == NavigationPage.HasNavigationBarProperty.PropertyName) 1162 else if (e.PropertyName == Page.TitleProperty.PropertyName) 1164 else if (e.PropertyName == NavigationPage.HasBackButtonProperty.PropertyName) 1166 else if (e.PropertyName == PrefersStatusBarHiddenProperty.PropertyName) 1168 else if (e.PropertyName == LargeTitleDisplayProperty.PropertyName) 1170 else if (e.PropertyName == NavigationPage.TitleIconImageSourceProperty.PropertyName || 1171 e.PropertyName == NavigationPage.TitleViewProperty.PropertyName) 1173 else if (e.PropertyName == NavigationPage.IconColorProperty.PropertyName)
iOS\Renderers\PageRenderer.cs (9)
280 if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName || e.PropertyName == VisualElement.BackgroundProperty.PropertyName) 282 else if (e.PropertyName == Page.BackgroundImageSourceProperty.PropertyName) 284 else if (e.PropertyName == Page.TitleProperty.PropertyName) 286 else if (e.PropertyName == PlatformConfiguration.iOSSpecific.Page.PrefersStatusBarHiddenProperty.PropertyName) 288 else if (Forms.IsiOS11OrNewer && e.PropertyName == PlatformConfiguration.iOSSpecific.Page.UseSafeAreaProperty.PropertyName) 293 else if (Forms.IsiOS11OrNewer && e.PropertyName == PlatformConfiguration.iOSSpecific.Page.SafeAreaInsetsProperty.PropertyName) 295 else if (e.PropertyName == PlatformConfiguration.iOSSpecific.Page.PrefersHomeIndicatorAutoHiddenProperty.PropertyName) 297 else if (e.PropertyName == Page.PaddingProperty.PropertyName)
iOS\Renderers\PhoneFlyoutPageRenderer.cs (8)
239 if (e.PropertyName == Page.IconImageSourceProperty.PropertyName || e.PropertyName == Page.TitleProperty.PropertyName) 247 else if (e.PropertyName == Microsoft.Maui.Controls.FlyoutPage.IsPresentedProperty.PropertyName) 249 else if (e.PropertyName == Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabledProperty.PropertyName) 251 else if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName || e.PropertyName == VisualElement.BackgroundProperty.PropertyName) 253 else if (e.PropertyName == Page.BackgroundImageSourceProperty.PropertyName) 255 else if (e.PropertyName == PlatformConfiguration.iOSSpecific.FlyoutPage.ApplyShadowProperty.PropertyName)
iOS\Renderers\PickerRenderer.cs (12)
136 if (e.PropertyName == Picker.HorizontalTextAlignmentProperty.PropertyName) 138 else if (e.PropertyName == Picker.VerticalTextAlignmentProperty.PropertyName) 140 if (e.PropertyName == Picker.TitleProperty.PropertyName || e.PropertyName == Picker.TitleColorProperty.PropertyName) 144 else if (e.PropertyName == Picker.SelectedIndexProperty.PropertyName) 148 else if (e.PropertyName == Picker.CharacterSpacingProperty.PropertyName) 150 else if (e.PropertyName == Picker.TextColorProperty.PropertyName || e.PropertyName == VisualElement.IsEnabledProperty.PropertyName) 152 else if (e.PropertyName == Picker.FontAttributesProperty.PropertyName || e.PropertyName == Picker.FontFamilyProperty.PropertyName || 153 e.PropertyName == Picker.FontSizeProperty.PropertyName) 157 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName)
iOS\Renderers\ProgressBarRenderer.cs (2)
46 if (e.PropertyName == ProgressBar.ProgressColorProperty.PropertyName) 48 else if (e.PropertyName == ProgressBar.ProgressProperty.PropertyName)
iOS\Renderers\RefreshViewRenderer.cs (2)
86 if (e.PropertyName == VisualElement.IsEnabledProperty.PropertyName) 88 else if (e.PropertyName == RefreshView.IsRefreshingProperty.PropertyName)
iOS\Renderers\ScrollViewRenderer.cs (7)
208 if (e.PropertyName == PlatformConfiguration.iOSSpecific.ScrollView.ShouldDelayContentTouchesProperty.PropertyName) 210 else if (e.PropertyName == ScrollView.ContentSizeProperty.PropertyName) 212 else if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName) 214 else if (e.PropertyName == VisualElement.BackgroundProperty.PropertyName) 216 else if (e.PropertyName == VisualElement.IsEnabledProperty.PropertyName) 218 else if (e.PropertyName == ScrollView.VerticalScrollBarVisibilityProperty.PropertyName) 220 else if (e.PropertyName == ScrollView.HorizontalScrollBarVisibilityProperty.PropertyName)
iOS\Renderers\SearchBarRenderer.cs (15)
108 if (e.PropertyName == SearchBar.PlaceholderProperty.PropertyName || e.PropertyName == SearchBar.PlaceholderColorProperty.PropertyName) 110 else if (e.PropertyName == VisualElement.IsEnabledProperty.PropertyName) 116 else if (e.PropertyName == SearchBar.TextColorProperty.PropertyName) 124 else if (e.PropertyName == SearchBar.CancelButtonColorProperty.PropertyName) 126 else if (e.PropertyName == SearchBar.FontAttributesProperty.PropertyName) 128 else if (e.PropertyName == SearchBar.FontFamilyProperty.PropertyName) 132 else if (e.PropertyName == SearchBar.FontSizeProperty.PropertyName) 134 else if (e.PropertyName == SearchBar.HorizontalTextAlignmentProperty.PropertyName) 136 else if (e.PropertyName == SearchBar.VerticalTextAlignmentProperty.PropertyName) 138 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName) 140 else if (e.PropertyName == Microsoft.Maui.Controls.InputView.MaxLengthProperty.PropertyName) 142 else if (e.PropertyName == Microsoft.Maui.Controls.InputView.KeyboardProperty.PropertyName) 144 else if (e.PropertyName == Microsoft.Maui.Controls.InputView.IsSpellCheckEnabledProperty.PropertyName) 146 else if (e.PropertyName == PlatformConfiguration.iOSSpecific.SearchBar.SearchBarStyleProperty.PropertyName)
iOS\Renderers\SliderRenderer.cs (8)
160 if (e.PropertyName == Slider.MaximumProperty.PropertyName) 162 else if (e.PropertyName == Slider.MinimumProperty.PropertyName) 164 else if (e.PropertyName == Slider.ValueProperty.PropertyName) 166 else if (e.PropertyName == Slider.MinimumTrackColorProperty.PropertyName) 168 else if (e.PropertyName == Slider.MaximumTrackColorProperty.PropertyName) 170 else if (e.PropertyName == Slider.ThumbImageSourceProperty.PropertyName) 172 else if (e.PropertyName == Slider.ThumbColorProperty.PropertyName) 174 else if (e.PropertyName == Specifics.UpdateOnTapProperty.PropertyName)
iOS\Renderers\StepperRenderer.cs (4)
61 if (e.PropertyName == Stepper.MinimumProperty.PropertyName) 63 else if (e.PropertyName == Stepper.MaximumProperty.PropertyName) 65 else if (e.PropertyName == Stepper.ValueProperty.PropertyName) 67 else if (e.PropertyName == Stepper.IncrementProperty.PropertyName)
iOS\Renderers\SwipeViewRenderer.cs (5)
158 if (e.PropertyName == ContentView.ContentProperty.PropertyName) 160 else if (e.PropertyName == VisualElement.IsEnabledProperty.PropertyName) 162 else if (e.PropertyName == Specifics.SwipeTransitionModeProperty.PropertyName) 347 if (e.PropertyName == VisualElement.IsEnabledProperty.PropertyName) 565 if (e.PropertyName == SwipeItem.IsVisibleProperty.PropertyName)
iOS\Renderers\SwitchRenderer.cs (2)
94 if (e.PropertyName == Switch.OnColorProperty.PropertyName) 96 if (e.PropertyName == Switch.ThumbColorProperty.PropertyName)
iOS\Renderers\TabbedRenderer.cs (11)
197 if (e.PropertyName == Page.IconImageSourceProperty.PropertyName || e.PropertyName == Page.TitleProperty.PropertyName) 241 else if (e.PropertyName == TabbedPage.BarBackgroundColorProperty.PropertyName) 243 else if (e.PropertyName == TabbedPage.BarBackgroundProperty.PropertyName) 245 else if (e.PropertyName == TabbedPage.BarTextColorProperty.PropertyName) 247 else if (e.PropertyName == PrefersStatusBarHiddenProperty.PropertyName) 249 else if (e.PropertyName == PreferredStatusBarUpdateAnimationProperty.PropertyName) 251 else if (e.PropertyName == TabbedPage.SelectedTabColorProperty.PropertyName || e.PropertyName == TabbedPage.UnselectedTabColorProperty.PropertyName) 253 else if (e.PropertyName == PrefersHomeIndicatorAutoHiddenProperty.PropertyName) 255 else if (e.PropertyName == TabbedPageConfiguration.TranslucencyModeProperty.PropertyName)
iOS\Renderers\TabletFlyoutPageRenderer.cs (7)
436 if (e.PropertyName == Page.IconImageSourceProperty.PropertyName || e.PropertyName == Page.TitleProperty.PropertyName) 449 else if (e.PropertyName == Microsoft.Maui.Controls.FlyoutPage.IsPresentedProperty.PropertyName) 451 else if (e.PropertyName == Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabledProperty.PropertyName) 453 else if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName || e.PropertyName == VisualElement.BackgroundProperty.PropertyName) 455 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName)
iOS\Renderers\TableViewRenderer.cs (4)
117 if (e.PropertyName == TableView.RowHeightProperty.PropertyName) 119 else if (e.PropertyName == TableView.HasUnevenRowsProperty.PropertyName) 121 else if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName || e.PropertyName == VisualElement.BackgroundProperty.PropertyName)
iOS\Renderers\TimePickerRenderer.cs (9)
146 if (e.PropertyName == TimePicker.TimeProperty.PropertyName || e.PropertyName == TimePicker.FormatProperty.PropertyName) 151 else if (e.PropertyName == TimePicker.TextColorProperty.PropertyName || e.PropertyName == VisualElement.IsEnabledProperty.PropertyName) 153 else if (e.PropertyName == TimePicker.CharacterSpacingProperty.PropertyName) 155 else if (e.PropertyName == TimePicker.FontAttributesProperty.PropertyName || 156 e.PropertyName == TimePicker.FontFamilyProperty.PropertyName || e.PropertyName == TimePicker.FontSizeProperty.PropertyName) 158 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName)
iOS\Renderers\UIContainerCell.cs (1)
122 if (e.PropertyName == BaseShellItem.IsCheckedProperty.PropertyName)
iOS\Renderers\WkWebViewRenderer.cs (1)
583 if (e.PropertyName == WebView.SourceProperty.PropertyName)
iOS\ShadowEffect.cs (5)
32 if (args.PropertyName == PlatformElement.IsShadowEnabledProperty.PropertyName || 33 args.PropertyName == PlatformElement.ShadowColorProperty.PropertyName || 34 args.PropertyName == PlatformElement.ShadowOffsetProperty.PropertyName || 35 args.PropertyName == PlatformElement.ShadowRadiusProperty.PropertyName || 36 args.PropertyName == PlatformElement.ShadowOpacityProperty.PropertyName)
iOS\Shapes\LineRenderer.cs (4)
45 if (args.PropertyName == Line.X1Property.PropertyName) 47 else if (args.PropertyName == Line.Y1Property.PropertyName) 49 else if (args.PropertyName == Line.X2Property.PropertyName) 51 else if (args.PropertyName == Line.Y2Property.PropertyName)
iOS\Shapes\PathRenderer.cs (2)
40 if (args.PropertyName == Path.DataProperty.PropertyName || args.PropertyName == Path.RenderTransformProperty.PropertyName)
iOS\Shapes\PolygonRenderer.cs (2)
47 if (args.PropertyName == Polygon.PointsProperty.PropertyName) 49 else if (args.PropertyName == Polygon.FillRuleProperty.PropertyName)
iOS\Shapes\PolylineRenderer.cs (2)
44 if (args.PropertyName == Polyline.PointsProperty.PropertyName) 46 else if (args.PropertyName == Polyline.FillRuleProperty.PropertyName)
iOS\Shapes\RectangleRenderer.cs (4)
40 if (args.PropertyName == VisualElement.HeightProperty.PropertyName || args.PropertyName == VisualElement.WidthProperty.PropertyName) 42 if (args.PropertyName == FormsRectangle.RadiusXProperty.PropertyName) 44 else if (args.PropertyName == FormsRectangle.RadiusYProperty.PropertyName)
iOS\Shapes\ShapeRenderer.cs (11)
59 if (args.PropertyName == VisualElement.HeightProperty.PropertyName) 64 else if (args.PropertyName == VisualElement.WidthProperty.PropertyName) 69 else if (args.PropertyName == Shape.AspectProperty.PropertyName) 71 else if (args.PropertyName == Shape.FillProperty.PropertyName) 73 else if (args.PropertyName == Shape.StrokeProperty.PropertyName) 75 else if (args.PropertyName == Shape.StrokeThicknessProperty.PropertyName) 77 else if (args.PropertyName == Shape.StrokeDashArrayProperty.PropertyName) 79 else if (args.PropertyName == Shape.StrokeDashOffsetProperty.PropertyName) 81 else if (args.PropertyName == Shape.StrokeLineCapProperty.PropertyName) 83 else if (args.PropertyName == Shape.StrokeLineJoinProperty.PropertyName) 85 else if (args.PropertyName == Shape.StrokeMiterLimitProperty.PropertyName)
iOS\ViewRenderer.cs (4)
159 if (e.PropertyName == VisualElement.IsEnabledProperty.PropertyName) 161 else if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName) 163 else if (e.PropertyName == VisualElement.BackgroundProperty.PropertyName) 165 else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName)
iOS\VisualElementRenderer.cs (8)
331 if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName) 333 else if (e.PropertyName == VisualElement.BackgroundProperty.PropertyName) 335 else if (e.PropertyName == Layout.IsClippedToBoundsProperty.PropertyName) 338 else if (e.PropertyName == PlatformConfiguration.iOSSpecific.VisualElement.BlurEffectProperty.PropertyName) 341 else if (e.PropertyName == AutomationProperties.HelpTextProperty.PropertyName) 343 else if (e.PropertyName == AutomationProperties.NameProperty.PropertyName) 345 else if (e.PropertyName == AutomationProperties.IsInAccessibleTreeProperty.PropertyName) 347 else if (e.PropertyName == AutomationProperties.ExcludedWithChildrenProperty.PropertyName)
iOS\VisualElementTracker.cs (20)
109 if (TrackFrame && (e.PropertyName == VisualElement.XProperty.PropertyName || 110 e.PropertyName == VisualElement.YProperty.PropertyName || 111 e.PropertyName == VisualElement.WidthProperty.PropertyName || 112 e.PropertyName == VisualElement.HeightProperty.PropertyName)) 116 else if (e.PropertyName == VisualElement.AnchorXProperty.PropertyName || 117 e.PropertyName == VisualElement.AnchorYProperty.PropertyName || 118 e.PropertyName == VisualElement.TranslationXProperty.PropertyName || 119 e.PropertyName == VisualElement.TranslationYProperty.PropertyName || 120 e.PropertyName == VisualElement.ScaleProperty.PropertyName || 121 e.PropertyName == VisualElement.ScaleXProperty.PropertyName || 122 e.PropertyName == VisualElement.ScaleYProperty.PropertyName || 123 e.PropertyName == VisualElement.RotationProperty.PropertyName || 124 e.PropertyName == VisualElement.RotationXProperty.PropertyName || 125 e.PropertyName == VisualElement.RotationYProperty.PropertyName || 126 e.PropertyName == VisualElement.IsVisibleProperty.PropertyName || 127 e.PropertyName == VisualElement.IsEnabledProperty.PropertyName || 128 e.PropertyName == VisualElement.InputTransparentProperty.PropertyName || 129 e.PropertyName == VisualElement.OpacityProperty.PropertyName || 130 e.PropertyName == Layout.CascadeInputTransparentProperty.PropertyName) 134 else if (e.PropertyName == VisualElement.ClipProperty.PropertyName)
Microsoft.Maui.Controls.Maps (2)
Map.cs (2)
288 $"The {nameof(Map)}.{ItemTemplateProperty.PropertyName} property only supports {nameof(DataTemplate)}." + 289 $" Set the {nameof(Map)}.{ItemTemplateSelectorProperty.PropertyName} property instead to use a {nameof(DataTemplateSelector)}");
Microsoft.Maui.Controls.Xaml (15)
ApplyPropertiesVisitor.cs (3)
593 return property.DeclaringType.GetRuntimeMethod("Get" + property.PropertyName, new[] { typeof(BindableObject) }); 597 throw new XamlParseException($"Multiple methods with name '{property.DeclaringType}.Get{property.PropertyName}' found.", lineInfo, innerException: e); 601 minforetriever = () => property.DeclaringType.GetRuntimeProperties().FirstOrDefault(pi => pi.Name == property.PropertyName);
MarkupExtensions\AppThemeBindingExtension.cs (4)
85 minfo = bp.DeclaringType.GetRuntimeProperty(bp.PropertyName); 89 throw new XamlParseException($"Multiple properties with name '{bp.DeclaringType}.{bp.PropertyName}' found.", serviceProvider, innerException: e); 95 return bp.DeclaringType.GetRuntimeMethod("Get" + bp.PropertyName, new[] { typeof(BindableObject) }); 99 throw new XamlParseException($"Multiple methods with name '{bp.DeclaringType}.Get{bp.PropertyName}' found.", serviceProvider, innerException: e);
MarkupExtensions\OnIdiomExtension.cs (4)
80 minfo = bp.DeclaringType.GetRuntimeProperty(bp.PropertyName); 84 throw new XamlParseException($"Multiple properties with name '{bp.DeclaringType}.{bp.PropertyName}' found.", serviceProvider, innerException: e); 90 return bp.DeclaringType.GetRuntimeMethod("Get" + bp.PropertyName, new[] { typeof(BindableObject) }); 94 throw new XamlParseException($"Multiple methods with name '{bp.DeclaringType}.Get{bp.PropertyName}' found.", serviceProvider, innerException: e);
MarkupExtensions\OnPlatformExtension.cs (4)
102 minfo = bp.DeclaringType.GetRuntimeProperty(bp.PropertyName); 106 throw new XamlParseException($"Multiple properties with name '{bp.DeclaringType}.{bp.PropertyName}' found.", serviceProvider, innerException: e); 112 return bp.DeclaringType.GetRuntimeMethod("Get" + bp.PropertyName, new[] { typeof(BindableObject) }); 116 throw new XamlParseException($"Multiple methods with name '{bp.DeclaringType}.Get{bp.PropertyName}' found.", serviceProvider, innerException: e);