93 references to CreateAttached
Microsoft.Maui.Controls (92)
BindableLayout\BindableLayout.cs (5)
22 BindableProperty.CreateAttached("ItemsSource", typeof(IEnumerable), typeof(IBindableLayout), default(IEnumerable), 27 BindableProperty.CreateAttached("ItemTemplate", typeof(DataTemplate), typeof(IBindableLayout), default(DataTemplate), 32 BindableProperty.CreateAttached("ItemTemplateSelector", typeof(DataTemplateSelector), typeof(IBindableLayout), default(DataTemplateSelector), 36 BindableProperty.CreateAttached("BindableLayoutController", typeof(BindableLayoutController), typeof(IBindableLayout), default(BindableLayoutController), 214 static readonly BindableProperty BindableLayoutTemplateProperty = BindableProperty.CreateAttached("BindableLayoutTemplate", typeof(DataTemplate), typeof(BindableLayoutController), default(DataTemplate));
Compatibility\Handlers\ListView\iOS\CellRenderer.cs (1)
12 static readonly BindableProperty RealCellProperty = BindableProperty.CreateAttached("RealCell", typeof(UITableViewCell), typeof(Cell), null);
Handlers\HandlerProperties.cs (1)
7 public static readonly BindableProperty DisconnectPolicyProperty = BindableProperty.CreateAttached(
Interactivity\BindingCondition.cs (1)
20 _boundProperty = BindableProperty.CreateAttached("Bound", typeof(object), typeof(BindingCondition), null, propertyChanged: OnBoundPropertyChanged);
Interactivity\MultiCondition.cs (1)
12 _aggregatedStateProperty = BindableProperty.CreateAttached("AggregatedState", typeof(bool), typeof(MultiCondition), false, propertyChanged: OnAggregatedStatePropertyChanged);
Interactivity\PropertyCondition.cs (1)
22 _stateProperty = BindableProperty.CreateAttached("State", typeof(bool), typeof(PropertyCondition), false, propertyChanged: OnStatePropertyChanged);
Internals\NameScope.cs (1)
15 BindableProperty.CreateAttached("NameScope", typeof(INameScope), typeof(NameScope), default(INameScope));
Layout\AbsoluteLayout.cs (2)
25 public static readonly BindableProperty LayoutFlagsProperty = BindableProperty.CreateAttached("LayoutFlags", 29 public static readonly BindableProperty LayoutBoundsProperty = BindableProperty.CreateAttached("LayoutBounds",
Layout\FlexLayout.cs (6)
50 BindableProperty.CreateAttached("Order", typeof(int), typeof(FlexLayout), default(int), 55 BindableProperty.CreateAttached("Grow", typeof(float), typeof(FlexLayout), default(float), 60 BindableProperty.CreateAttached("Shrink", typeof(float), typeof(FlexLayout), 1f, 65 BindableProperty.CreateAttached("AlignSelf", typeof(FlexAlignSelf), typeof(FlexLayout), FlexAlignSelf.Auto, 70 BindableProperty.CreateAttached("Basis", typeof(FlexBasis), typeof(FlexLayout), FlexBasis.Auto, 156 BindableProperty.CreateAttached("FlexItem", typeof(Flex.Item), typeof(FlexLayout), null);
Layout\Grid.cs (4)
45 public static readonly BindableProperty RowProperty = BindableProperty.CreateAttached("Row", 50 public static readonly BindableProperty RowSpanProperty = BindableProperty.CreateAttached("RowSpan", 55 public static readonly BindableProperty ColumnProperty = BindableProperty.CreateAttached("Column", 60 public static readonly BindableProperty ColumnSpanProperty = BindableProperty.CreateAttached("ColumnSpan",
LegacyLayouts\AbsoluteLayout.cs (2)
18 public static readonly BindableProperty LayoutFlagsProperty = BindableProperty.CreateAttached("LayoutFlags", typeof(AbsoluteLayoutFlags), typeof(AbsoluteLayout), AbsoluteLayoutFlags.None); 21 public static readonly BindableProperty LayoutBoundsProperty = BindableProperty.CreateAttached("LayoutBounds", typeof(Rect), typeof(AbsoluteLayout), new Rect(0, 0, AutoSize, AutoSize));
LegacyLayouts\FlexLayout.cs (6)
47 BindableProperty.CreateAttached("FlexItem", typeof(Flex.Item), typeof(FlexLayout), null); 51 BindableProperty.CreateAttached("Order", typeof(int), typeof(FlexLayout), default(int), 56 BindableProperty.CreateAttached("Grow", typeof(float), typeof(FlexLayout), default(float), 61 BindableProperty.CreateAttached("Shrink", typeof(float), typeof(FlexLayout), 1f, 66 BindableProperty.CreateAttached("AlignSelf", typeof(FlexAlignSelf), typeof(FlexLayout), FlexAlignSelf.Auto, 71 BindableProperty.CreateAttached("Basis", typeof(FlexBasis), typeof(FlexLayout), FlexBasis.Auto,
LegacyLayouts\Grid.cs (4)
17 public static readonly BindableProperty RowProperty = BindableProperty.CreateAttached("Row", typeof(int), typeof(Grid), default(int), validateValue: (bindable, value) => (int)value >= 0); 20 public static readonly BindableProperty RowSpanProperty = BindableProperty.CreateAttached("RowSpan", typeof(int), typeof(Grid), 1, validateValue: (bindable, value) => (int)value >= 1); 23 public static readonly BindableProperty ColumnProperty = BindableProperty.CreateAttached("Column", typeof(int), typeof(Grid), default(int), validateValue: (bindable, value) => (int)value >= 0); 26 public static readonly BindableProperty ColumnSpanProperty = BindableProperty.CreateAttached("ColumnSpan", typeof(int), typeof(Grid), 1, validateValue: (bindable, value) => (int)value >= 1);
LegacyLayouts\RelativeLayout.cs (5)
19 public static readonly BindableProperty XConstraintProperty = BindableProperty.CreateAttached("XConstraint", typeof(Constraint), typeof(RelativeLayout), null, propertyChanged: ConstraintChanged); 22 public static readonly BindableProperty YConstraintProperty = BindableProperty.CreateAttached("YConstraint", typeof(Constraint), typeof(RelativeLayout), null, propertyChanged: ConstraintChanged); 25 public static readonly BindableProperty WidthConstraintProperty = BindableProperty.CreateAttached("WidthConstraint", typeof(Constraint), typeof(RelativeLayout), null, propertyChanged: ConstraintChanged); 28 public static readonly BindableProperty HeightConstraintProperty = BindableProperty.CreateAttached("HeightConstraint", typeof(Constraint), typeof(RelativeLayout), null, propertyChanged: ConstraintChanged); 31 public static readonly BindableProperty BoundsConstraintProperty = BindableProperty.CreateAttached("BoundsConstraint", typeof(BoundsConstraint), typeof(RelativeLayout), null);
Menu\FlyoutBase.cs (1)
7 public static readonly BindableProperty ContextFlyoutProperty = BindableProperty.CreateAttached("ContextFlyout", typeof(FlyoutBase), typeof(FlyoutBase), null,
Menu\MenuItem.cs (1)
16 public static readonly BindableProperty AcceleratorProperty = BindableProperty.CreateAttached(nameof(Accelerator), typeof(Accelerator), typeof(MenuItem), null);
NavigationPage\NavigationPage.cs (6)
18 public static readonly BindableProperty BackButtonTitleProperty = BindableProperty.CreateAttached("BackButtonTitle", typeof(string), typeof(Page), null); 22 BindableProperty.CreateAttached("HasNavigationBar", typeof(bool), typeof(Page), true); 25 public static readonly BindableProperty HasBackButtonProperty = BindableProperty.CreateAttached("HasBackButton", typeof(bool), typeof(NavigationPage), true); 37 public static readonly BindableProperty TitleIconImageSourceProperty = BindableProperty.CreateAttached("TitleIconImageSource", typeof(ImageSource), typeof(NavigationPage), default(ImageSource)); 40 public static readonly BindableProperty IconColorProperty = BindableProperty.CreateAttached("IconColor", typeof(Color), typeof(NavigationPage), null); 43 public static readonly BindableProperty TitleViewProperty = BindableProperty.CreateAttached("TitleView", typeof(View), typeof(NavigationPage), null,
PlatformConfiguration\AndroidSpecific\VisualElement.cs (1)
66 BindableProperty.CreateAttached("IsLegacyColorModeEnabled", typeof(bool),
PlatformConfiguration\iOSSpecific\VisualElement.cs (1)
331 BindableProperty.CreateAttached("IsLegacyColorModeEnabled", typeof(bool),
PlatformConfiguration\TizenSpecific\Application.cs (1)
40 public static readonly BindableProperty OverlayContentProperty = BindableProperty.CreateAttached("OverlayContent", typeof(View), typeof(FormsElement), default(View));
PlatformConfiguration\TizenSpecific\NavigationPage.cs (1)
12 = BindableProperty.CreateAttached("HasBreadCrumbsBar", typeof(bool), typeof(FormsElement), false);
PlatformConfiguration\TizenSpecific\Page.cs (1)
12 = BindableProperty.CreateAttached("BreadCrumb", typeof(string), typeof(FormsElement), default(string));
PlatformConfiguration\WindowsSpecific\FlyoutPage.cs (2)
15 BindableProperty.CreateAttached("CollapseStyle", typeof(CollapseStyle), 58 BindableProperty.CreateAttached("CollapsedPaneWidth", typeof(double),
PlatformConfiguration\WindowsSpecific\ListView.cs (1)
15 BindableProperty.CreateAttached("WindowsSelectionMode", typeof(ListViewSelectionMode),
PlatformConfiguration\WindowsSpecific\Page.cs (2)
23 BindableProperty.CreateAttached("ToolbarPlacement", typeof(ToolbarPlacement), 77 BindableProperty.CreateAttached("ToolbarDynamicOverflowEnabled", typeof(bool),
PlatformConfiguration\WindowsSpecific\VisualElement.cs (1)
122 BindableProperty.CreateAttached("IsLegacyColorModeEnabled", typeof(bool),
RadioButton\RadioButtonGroup.cs (1)
13 BindableProperty.CreateAttached("RadioButtonGroupController", typeof(RadioButtonGroupController), typeof(Maui.ILayout), default(RadioButtonGroupController),
Routing.cs (1)
129 => BindableProperty.CreateAttached("Route", typeof(string), typeof(Routing), null,
SemanticProperties.cs (3)
10 public static readonly BindableProperty DescriptionProperty = BindableProperty.CreateAttached("Description", typeof(string), typeof(SemanticProperties), default(string)); 13 public static readonly BindableProperty HintProperty = BindableProperty.CreateAttached("Hint", typeof(string), typeof(SemanticProperties), default(string)); 16 public static readonly BindableProperty HeadingLevelProperty = BindableProperty.CreateAttached("HeadingLevel", typeof(SemanticHeadingLevel), typeof(SemanticProperties), SemanticHeadingLevel.None);
Shell\Shell.cs (24)
35 BindableProperty.CreateAttached("BackButtonBehavior", typeof(BackButtonBehavior), typeof(Shell), null, BindingMode.OneTime, 50 public static readonly BindableProperty PresentationModeProperty = BindableProperty.CreateAttached("PresentationMode", typeof(PresentationMode), typeof(Shell), PresentationMode.Animated); 60 BindableProperty.CreateAttached(nameof(FlyoutBehavior), typeof(FlyoutBehavior), typeof(Shell), FlyoutBehavior.Flyout, 67 BindableProperty.CreateAttached("NavBarIsVisible", typeof(bool), typeof(Shell), true, propertyChanged: OnNavBarIsVisibleChanged); 84 BindableProperty.CreateAttached("NavBarHasShadow", typeof(bool), typeof(Shell), default(bool), 91 BindableProperty.CreateAttached("SearchHandler", typeof(SearchHandler), typeof(Shell), null, BindingMode.OneTime, 107 BindableProperty.CreateAttached("FlyoutItemIsVisible", typeof(bool), typeof(Shell), true, propertyChanged: OnFlyoutItemIsVisibleChanged); 136 BindableProperty.CreateAttached("TabBarIsVisible", typeof(bool), typeof(Shell), true); 142 BindableProperty.CreateAttached("TitleView", typeof(View), typeof(Shell), null, propertyChanged: OnTitleViewChanged); 148 BindableProperty.CreateAttached(nameof(MenuItemTemplate), typeof(DataTemplate), typeof(Shell), null, BindingMode.OneTime); 172 BindableProperty.CreateAttached(nameof(ItemTemplate), typeof(DataTemplate), typeof(Shell), null, BindingMode.OneTime); 360 BindableProperty.CreateAttached("BackgroundColor", typeof(Color), typeof(Shell), null, 367 BindableProperty.CreateAttached("DisabledColor", typeof(Color), typeof(Shell), null, 374 BindableProperty.CreateAttached("ForegroundColor", typeof(Color), typeof(Shell), null, 381 BindableProperty.CreateAttached("TabBarBackgroundColor", typeof(Color), typeof(Shell), null, 388 BindableProperty.CreateAttached("TabBarDisabledColor", typeof(Color), typeof(Shell), null, 393 BindableProperty.CreateAttached("TabBarForegroundColor", typeof(Color), typeof(Shell), null, 400 BindableProperty.CreateAttached("TabBarTitleColor", typeof(Color), typeof(Shell), null, 407 BindableProperty.CreateAttached("TabBarUnselectedColor", typeof(Color), typeof(Shell), null, 414 BindableProperty.CreateAttached("TitleColor", typeof(Color), typeof(Shell), null, 421 BindableProperty.CreateAttached("UnselectedColor", typeof(Color), typeof(Shell), null, 428 BindableProperty.CreateAttached(nameof(FlyoutBackdrop), typeof(Brush), typeof(Shell), Brush.Default, 436 BindableProperty.CreateAttached(nameof(FlyoutWidth), typeof(double), typeof(Shell), -1d, 444 BindableProperty.CreateAttached(nameof(FlyoutHeight), typeof(double), typeof(Shell), -1d,
Shell\ShellContent.cs (1)
33 BindableProperty.CreateAttached("QueryAttributes", typeof(ShellRouteParameters), typeof(ShellContent), defaultValue: null, propertyChanged: OnQueryAttributesPropertyChanged);
Style.cs (1)
16 readonly BindableProperty _basedOnResourceProperty = BindableProperty.CreateAttached("BasedOnResource", typeof(Style), typeof(Style), default(Style),
ToolTipProperties.cs (1)
9 BindableProperty.CreateAttached("Text", typeof(string), typeof(ToolTipProperties), defaultValue: null, propertyChanged: OnToolTipPropertyChanged);
VisualStateManager.cs (1)
26 BindableProperty.CreateAttached("VisualStateGroups", typeof(VisualStateGroupList), typeof(VisualElement),
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Platform.cs (1)
18 internal static readonly BindableProperty RendererProperty = BindableProperty.CreateAttached("Renderer", typeof(IVisualElementRenderer), typeof(Platform), default(IVisualElementRenderer),