diff --git a/libs/FmgLib.MauiMarkup/Extensions/PageExtension.cs b/libs/FmgLib.MauiMarkup/Extensions/PageExtension.cs index 679afa8..8a9364a 100644 --- a/libs/FmgLib.MauiMarkup/Extensions/PageExtension.cs +++ b/libs/FmgLib.MauiMarkup/Extensions/PageExtension.cs @@ -861,7 +861,7 @@ public static Color GetShellTabBarUnselectedColorValue(this T self) } - public static T HasNavigationBar(this T self, + public static T NavigationPageHasNavigationBar(this T self, bool hasNavigationBar) where T : Microsoft.Maui.Controls.Page { @@ -869,7 +869,7 @@ public static T HasNavigationBar(this T self, return self; } - public static T HasNavigationBar(this T self, Func, IPropertyBuilder> configure) + public static T NavigationPageHasNavigationBar(this T self, Func, IPropertyBuilder> configure) where T : Microsoft.Maui.Controls.Page { var context = new PropertyContext(self, Microsoft.Maui.Controls.NavigationPage.HasNavigationBarProperty); @@ -877,7 +877,7 @@ public static T HasNavigationBar(this T self, Func, IPr return self; } - public static SettersContext HasNavigationBar(this SettersContext self, + public static SettersContext NavigationPageHasNavigationBar(this SettersContext self, bool hasNavigationBar) where T : Microsoft.Maui.Controls.Page { @@ -885,7 +885,7 @@ public static SettersContext HasNavigationBar(this SettersContext self, return self; } - public static SettersContext HasNavigationBar(this SettersContext self, Func, IPropertySettersBuilder> configure) + public static SettersContext NavigationPageHasNavigationBar(this SettersContext self, Func, IPropertySettersBuilder> configure) where T : Microsoft.Maui.Controls.Page { var context = new PropertySettersContext(self.XamlSetters, Microsoft.Maui.Controls.NavigationPage.HasNavigationBarProperty); @@ -893,7 +893,7 @@ public static SettersContext HasNavigationBar(this SettersContext self, return self; } - public static T BackButtonTitle(this T self, + public static T NavigationPageBackButtonTitle(this T self, string backButtonTitle) where T : Microsoft.Maui.Controls.Page { @@ -901,7 +901,7 @@ public static T BackButtonTitle(this T self, return self; } - public static T BackButtonTitle(this T self, Func, IPropertyBuilder> configure) + public static T NavigationPageBackButtonTitle(this T self, Func, IPropertyBuilder> configure) where T : Microsoft.Maui.Controls.Page { var context = new PropertyContext(self, Microsoft.Maui.Controls.NavigationPage.BackButtonTitleProperty); @@ -909,7 +909,7 @@ public static T BackButtonTitle(this T self, Func, IP return self; } - public static SettersContext BackButtonTitle(this SettersContext self, + public static SettersContext NavigationPageBackButtonTitle(this SettersContext self, string backButtonTitle) where T : Microsoft.Maui.Controls.Page { @@ -917,7 +917,7 @@ public static SettersContext BackButtonTitle(this SettersContext self, return self; } - public static SettersContext BackButtonTitle(this SettersContext self, Func, IPropertySettersBuilder> configure) + public static SettersContext NavigationPageBackButtonTitle(this SettersContext self, Func, IPropertySettersBuilder> configure) where T : Microsoft.Maui.Controls.Page { var context = new PropertySettersContext(self.XamlSetters, Microsoft.Maui.Controls.NavigationPage.BackButtonTitleProperty); diff --git a/libs/FmgLib.MauiMarkup/FmgLib.MauiMarkup.csproj b/libs/FmgLib.MauiMarkup/FmgLib.MauiMarkup.csproj index fa3bf53..9ee3e5d 100644 --- a/libs/FmgLib.MauiMarkup/FmgLib.MauiMarkup.csproj +++ b/libs/FmgLib.MauiMarkup/FmgLib.MauiMarkup.csproj @@ -11,7 +11,7 @@ FmgLib.MauiMarkup FmgLib.MauiMarkup with C# Markup classes and fluent helper methods FmgLib.MauiMarkup - 8.6.3 + 8.6.4 FmgYazılım Fmg Yazılım ©2024 diff --git a/libs/FmgLib.MauiMarkup/README.md b/libs/FmgLib.MauiMarkup/README.md index 26357c4..3c69666 100644 --- a/libs/FmgLib.MauiMarkup/README.md +++ b/libs/FmgLib.MauiMarkup/README.md @@ -173,7 +173,7 @@ The usage of the AttachedProperty in the Button class will be as follows: new Button() .Text("Login") .FontAttributes(Bold) -.IsSubmitButton(true) +.FormViewIsSubmitButton(true) ```