-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathToolkitSampleTextOptionMetadataViewModel.cs
81 lines (72 loc) · 2.53 KB
/
ToolkitSampleTextOptionMetadataViewModel.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using CommunityToolkit.Tooling.SampleGen.Attributes;
namespace CommunityToolkit.Tooling.SampleGen.Metadata;
/// <summary>
/// An INPC-enabled metadata container for data defined in an <see cref="ToolkitSampleTextOptionAttribute"/>.
/// </summary>
/// <remarks>
/// Instances of these are generated by the <see cref="ToolkitSampleMetadataGenerator"/> and
/// provided to the app alongside the sample registration.
/// </remarks>
public class ToolkitSampleTextOptionMetadataViewModel : IGeneratedToolkitSampleOptionViewModel
{
private string? _title;
private object _value;
/// <summary>
/// Creates a new instance of <see cref="ToolkitSampleTextOptionAttribute"/>.
/// </summary>
public ToolkitSampleTextOptionMetadataViewModel(string name, string placeholderText = "", string? title = null)
{
Name = name;
_title = title;
_value = placeholderText;
}
/// <inheritdoc cref="INotifyPropertyChanged.PropertyChanged"/>
public event PropertyChangedEventHandler? PropertyChanged;
/// <summary>
/// A unique identifier for this option.
/// </summary>
/// <remarks>
/// Used by the sample system to match up <see cref="ToolkitSampleTextOptionMetadataViewModel"/> to the original <see cref="ToolkitSampleTextOptionAttribute"/> and the control that declared it.
/// </remarks>
public string Name { get; }
/// <summary>
/// The current boolean value.
/// </summary>
/// <remarks>
/// Provided to accomodate binding to a property that is a non-nullable <see cref="bool"/>.
/// </remarks>
public string PlaceholderText
{
get => (string)_value;
set
{
_value = value;
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(Name));
}
}
/// <inheritdoc/>
public object? Value
{
get => PlaceholderText;
set
{
PlaceholderText = (string)(value ?? string.Empty);
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(Name));
}
}
/// <summary>
/// A title to display on top of the boolean option.
/// </summary>
public string? Title
{
get => _title;
set
{
_title = value;
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(Title)));
}
}
}