Created
January 17, 2022 13:19
-
-
Save sthewissen/bc3b0457be34c4a7aafa9d09e900e076 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Maui; | |
using Microsoft.Maui.Hosting; | |
public static class MauiProgram | |
{ | |
public static MauiApp CreateMauiApp() | |
{ | |
var builder = MauiApp.CreateBuilder(); | |
builder | |
.UseMauiApp<App>() | |
.ConfigureMauiHandlers(handlers => | |
{ | |
handlers.AddHandler(typeof(MyEntry), typeof(MyEntryHandler)); | |
}); | |
return builder.Build(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment