Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
using System.Diagnostics;
namespace MauiApp1;
public partial class MainPage : ContentPage
{
public const double MyFontSize = 20;
public MainPage()
{
InitializeComponent();
}
async void OnNewButtonClicked(object sender, EventArgs e)
{
await Navigation.PushAsync(new Pages.Template1());
}
}
[ContentProperty("Member")]
public class StaticExtension : IMarkupExtension
{
public string Member { get; set; }
public object ProvideValue(IServiceProvider serviceProvider)
{
return MainPage.MyFontSize;
}
}