Microsoft Windows 10 · Schema
WinUIControlDetail
Detailed control information
DesktopOperating SystemUWPWin32Windows
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| namespace | string | |
| description | string | |
| category | string | |
| baseClass | string | Parent class in the inheritance hierarchy |
| properties | array | |
| events | array | |
| xamlUsage | string | Example XAML markup |
| guidelines | string | Fluent Design usage guidelines |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WinUIControlDetail",
"title": "WinUIControlDetail",
"type": "object",
"description": "Detailed control information",
"properties": {
"name": {
"type": "string"
},
"namespace": {
"type": "string"
},
"description": {
"type": "string"
},
"category": {
"type": "string"
},
"baseClass": {
"type": "string",
"description": "Parent class in the inheritance hierarchy"
},
"properties": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"defaultValue": {
"type": "string"
},
"description": {
"type": "string"
},
"isDependencyProperty": {
"type": "boolean"
}
}
}
},
"events": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"eventArgsType": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
},
"xamlUsage": {
"type": "string",
"description": "Example XAML markup"
},
"guidelines": {
"type": "string",
"description": "Fluent Design usage guidelines"
}
}
}