Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move IPopup4 to Private namespace #6165

Merged
merged 1 commit into from
Oct 26, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 28 additions & 23 deletions dev/CommandBarFlyout/CommandBarFlyoutCommandBar.idl
Original file line number Diff line number Diff line change
@@ -1,4 +1,31 @@
namespace MU_XCP_NAMESPACE
namespace MU_PRIVATE_CONTROLS_NAMESPACE
{

[MUX_INTERNAL]
[webhosthidden]
[uuid(1870b836-df2f-5fc6-a5f2-748ed6ce7321)]
interface IPopup4
{
Windows.UI.Xaml.FrameworkElement PlacementTarget;
Microsoft.UI.Xaml.Controls.Primitives.PopupPlacementMode DesiredPlacement;
Microsoft.UI.Xaml.Controls.Primitives.PopupPlacementMode ActualPlacement{ get; };

event Windows.Foundation.EventHandler<Object> ActualPlacementChanged;
};

[MUX_INTERNAL]
[webhosthidden]
[uuid(98ffd442-a3f5-534c-906d-88b72a78126b)]
interface IAutomationPropertiesStatics9
{
Windows.UI.Xaml.DependencyProperty ControlTypeProperty{ get; };
Windows.UI.Xaml.Automation.Peers.AutomationControlType GetControlType(Windows.UI.Xaml.UIElement element);
void SetControlType(Windows.UI.Xaml.UIElement element, Windows.UI.Xaml.Automation.Peers.AutomationControlType value);
};

}

namespace MU_XCP_NAMESPACE
{

[MUX_PUBLIC]
Expand Down Expand Up @@ -59,28 +86,6 @@ enum PopupPlacementMode
RightEdgeAlignedBottom,
};

[MUX_INTERNAL]
[webhosthidden]
[uuid(1870b836-df2f-5fc6-a5f2-748ed6ce7321)]
interface IPopup4
{
Windows.UI.Xaml.FrameworkElement PlacementTarget;
Microsoft.UI.Xaml.Controls.Primitives.PopupPlacementMode DesiredPlacement;
Microsoft.UI.Xaml.Controls.Primitives.PopupPlacementMode ActualPlacement{ get; };

event Windows.Foundation.EventHandler<Object> ActualPlacementChanged;
};

[MUX_INTERNAL]
[webhosthidden]
[uuid(98ffd442-a3f5-534c-906d-88b72a78126b)]
interface IAutomationPropertiesStatics9
{
Windows.UI.Xaml.DependencyProperty ControlTypeProperty{ get; };
Windows.UI.Xaml.Automation.Peers.AutomationControlType GetControlType(Windows.UI.Xaml.UIElement element);
void SetControlType(Windows.UI.Xaml.UIElement element, Windows.UI.Xaml.Automation.Peers.AutomationControlType value);
};

[MUX_PUBLIC]
[webhosthidden]
static runtimeclass CommandBarFlyoutCommandBarAutomationProperties
Expand Down