Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
UriSchemaIcon.cs
1using Microsoft.Maui.Controls.Shapes;
2
4{
11 public class UriSchemaIcon(Geometry Geometry, Color ForegroundColor, ScanQrCodeViewModel ParentViewModel) : BindableObject()
12 {
13 private readonly ScanQrCodeViewModel parentViewModel = ParentViewModel;
14
18 public Geometry Geometry { get; } = Geometry;
19
23 public Color ForegroundColor { get; } = ForegroundColor;
24
28 public Color BackgroundColor => this.parentViewModel.IconBackgroundColor;
29
33 internal void BackgroundColorChanged()
34 {
35 this.OnPropertyChanged(nameof(this.BackgroundColor));
36 }
37 }
38}
The view model to bind to when scanning a QR code.
Color IconBackgroundColor
Background color of displayed icon.
class UriSchemaIcon(Geometry Geometry, Color ForegroundColor, ScanQrCodeViewModel ParentViewModel)
Represents an icon for an URI schema.