-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathToolkitSampleSubcategory.cs
More file actions
40 lines (33 loc) · 986 Bytes
/
ToolkitSampleSubcategory.cs
File metadata and controls
40 lines (33 loc) · 986 Bytes
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
// 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.
namespace CommunityToolkit.Labs.Core.SourceGenerators;
/// <summary>
/// The various subcategories used by samples.
/// </summary>
/// <remarks>
/// Subcategories can be used by samples across multiple categories.
/// </remarks>
public enum ToolkitSampleSubcategory : byte
{
/// <summary>
/// No subcategory specified.
/// </summary>
None,
/// <summary>
/// A sample that focuses on control layout.
/// </summary>
Layout,
/// <summary>
/// A sample that focuses on status and info behaviors.
/// </summary>
StatusAndInfo,
/// <summary>
/// A sample that focuses input controls.
/// </summary>
Input,
/// <summary>
/// A sample that focuses on media controls or behaviors.
/// </summary>
Media,
}