Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dotmorten/mauiex
A set of .NET MAUI controls
https://github.com/dotmorten/mauiex
dotnet maui
Last synced: 5 days ago
JSON representation
A set of .NET MAUI controls
- Host: GitHub
- URL: https://github.com/dotmorten/mauiex
- Owner: dotMorten
- License: apache-2.0
- Created: 2018-06-28T19:21:19.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-10-20T16:46:56.000Z (about 1 year ago)
- Last Synced: 2024-05-01T21:41:32.161Z (6 months ago)
- Topics: dotnet, maui
- Language: C#
- Homepage:
- Size: 751 KB
- Stars: 203
- Watchers: 12
- Forks: 53
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Maui Controls
A set of .NET MAUI controls### NuGet Packages:
- [dotMorten.MauiEx](https://www.nuget.org/packages/dotMorten.MauiEx/)# Usage:
In `MauiProgram.CreateMauiApp` register the controls:```cs
using MauiEx; // Include using to get extension methodnamespace SampleApp;
public static class MauiProgram
{
public static MauiApp CreateMauiApp()
{
var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp()
.ConfigureFonts(fonts =>
{
fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
})
.UseMauiEx(); //Register control library
return builder.Build();
}
}
```## Sponsoring
If you like this library and use it a lot, consider sponsoring me. Anything helps and encourages me to keep going.
See here for details: https://github.com/sponsors/dotMorten
### Controls
- [AutoSuggestBox](AutoSuggestBox/) : Represents a text control that makes suggestions to users as they type. The app is notified when text has been changed by the user and is responsible for providing relevant suggestions for this control to display.
![autosuggestbox](https://user-images.githubusercontent.com/1378165/51137780-42b30b80-17f4-11e9-8ac1-7b129fc3d9ee.gif)