File tree 4 files changed +25
-6
lines changed
Generated/3.0.0.0/Microsoft.UI.Xaml.Controls
4 files changed +25
-6
lines changed Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ namespace Microsoft.UI.Xaml.Controls
8
8
#endif
9
9
public partial interface ICommandBarElement
10
10
{
11
- #if __ANDROID__ || __IOS__ || IS_UNIT_TESTS || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
11
+ #if false
12
12
int DynamicOverflowOrder
13
13
{
14
14
get ;
15
15
set ;
16
16
}
17
17
#endif
18
18
// Skipping already declared property IsCompact
19
- #if __ANDROID__ || __IOS__ || IS_UNIT_TESTS || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
19
+ #if false
20
20
bool IsInOverflow
21
21
{
22
22
get ;
Original file line number Diff line number Diff line change @@ -20,10 +20,8 @@ namespace Microsoft.UI.Xaml.Controls;
20
20
21
21
partial class AppBarButton
22
22
{
23
- internal void SetInputMode ( InputDeviceType inputDeviceTypeUsedToOpenOverflow )
24
- {
23
+ internal void SetInputMode ( InputDeviceType inputDeviceTypeUsedToOpenOverflow ) =>
25
24
m_inputDeviceTypeUsedToOpenOverflow = inputDeviceTypeUsedToOpenOverflow ;
26
- }
27
25
28
26
bool ISubMenuOwner . IsSubMenuPositionedAbsolutely => false ;
29
27
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ namespace Microsoft.UI.Xaml.Controls;
12
12
13
13
public partial class AppBarToggleButton
14
14
{
15
- private void SetInputMode ( InputDeviceType inputDeviceTypeUsedToOpenOverflow ) =>
15
+ internal void SetInputMode ( InputDeviceType inputDeviceTypeUsedToOpenOverflow ) =>
16
16
m_inputDeviceTypeUsedToOpenOverflow = inputDeviceTypeUsedToOpenOverflow ;
17
17
18
18
// LabelOnRightStyle doesn't work in AppBarButton/AppBarToggleButton Reveal Style.
Original file line number Diff line number Diff line change 4
4
5
5
namespace Microsoft . UI . Xaml . Controls ;
6
6
7
+ /// <summary>
8
+ /// Defines the compact view for command bar elements.
9
+ /// </summary>
7
10
public partial interface ICommandBarElement
8
11
{
12
+ /// <summary>
13
+ /// Gets or sets a value that indicates the order in which
14
+ /// a primary command in a CommandBar should be moved to
15
+ /// the overflow menu when there is not enough room to display
16
+ /// all primary commands.
17
+ /// </summary>
18
+ int DynamicOverflowOrder { get ; set ; }
19
+
20
+ /// <summary>
21
+ /// Gets a value that indicates whether the CommandBar command
22
+ /// is currently located in the overflow menu.
23
+ /// </summary>
24
+ bool IsInOverflow { get ; }
25
+
26
+ /// <summary>
27
+ /// Gets or sets a value that indicates whether the element
28
+ /// is shown with no label and reduced padding.
29
+ /// </summary>
9
30
bool IsCompact { get ; set ; }
10
31
}
You can’t perform that action at this time.
0 commit comments