@@ -24,18 +24,27 @@ public RichSuggestBoxMetadata()
24
24
b . AddCustomAttributes ( nameof ( RichSuggestBox . Description ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
25
25
b . AddCustomAttributes ( nameof ( RichSuggestBox . DisabledFormattingAccelerators ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
26
26
b . AddCustomAttributes ( nameof ( RichSuggestBox . Header ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
27
- b . AddCustomAttributes ( nameof ( RichSuggestBox . HeaderTemplate ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
27
+ b . AddCustomAttributes ( nameof ( RichSuggestBox . HeaderTemplate ) ,
28
+ new CategoryAttribute ( Resources . CategoryAppearance ) ,
29
+ new EditorBrowsableAttribute ( EditorBrowsableState . Advanced )
30
+ ) ;
28
31
b . AddCustomAttributes ( nameof ( RichSuggestBox . PlaceholderText ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
29
- b . AddCustomAttributes ( nameof ( RichSuggestBox . PopupCornerRadius ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
32
+ b . AddCustomAttributes ( nameof ( RichSuggestBox . PopupCornerRadius ) , new CategoryAttribute ( Resources . CategoryAppearance ) ) ;
30
33
b . AddCustomAttributes ( nameof ( RichSuggestBox . PopupFooter ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
31
- b . AddCustomAttributes ( nameof ( RichSuggestBox . PopupFooterTemplate ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
34
+ b . AddCustomAttributes ( nameof ( RichSuggestBox . PopupFooterTemplate ) ,
35
+ new CategoryAttribute ( Resources . CategoryAppearance ) ,
36
+ new EditorBrowsableAttribute ( EditorBrowsableState . Advanced )
37
+ ) ;
32
38
b . AddCustomAttributes ( nameof ( RichSuggestBox . PopupHeader ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
33
- b . AddCustomAttributes ( nameof ( RichSuggestBox . PopupHeaderTemplate ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
34
- b . AddCustomAttributes ( nameof ( RichSuggestBox . PopupPlacement ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
39
+ b . AddCustomAttributes ( nameof ( RichSuggestBox . PopupHeaderTemplate ) ,
40
+ new CategoryAttribute ( Resources . CategoryAppearance ) ,
41
+ new EditorBrowsableAttribute ( EditorBrowsableState . Advanced )
42
+ ) ;
43
+ b . AddCustomAttributes ( nameof ( RichSuggestBox . PopupPlacement ) , new CategoryAttribute ( Resources . CategoryAppearance ) ) ;
35
44
b . AddCustomAttributes ( nameof ( RichSuggestBox . Prefixes ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
36
- b . AddCustomAttributes ( nameof ( RichSuggestBox . RichEditBoxStyle ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
37
- b . AddCustomAttributes ( nameof ( RichSuggestBox . TokenBackground ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
38
- b . AddCustomAttributes ( nameof ( RichSuggestBox . TokenForeground ) , new CategoryAttribute ( Resources . CategoryCommon ) ) ;
45
+ b . AddCustomAttributes ( nameof ( RichSuggestBox . RichEditBoxStyle ) , new CategoryAttribute ( Resources . CategoryAppearance ) ) ;
46
+ b . AddCustomAttributes ( nameof ( RichSuggestBox . TokenBackground ) , new CategoryAttribute ( Resources . CategoryBrush ) ) ;
47
+ b . AddCustomAttributes ( nameof ( RichSuggestBox . TokenForeground ) , new CategoryAttribute ( Resources . CategoryBrush ) ) ;
39
48
b . AddCustomAttributes ( new ToolboxCategoryAttribute ( ToolboxCategoryPaths . Toolkit , false ) ) ;
40
49
}
41
50
) ;
0 commit comments