当前位置: 首页>>代码示例>>C#>>正文


C# Button.GetElementBounds方法代码示例

本文整理汇总了C#中Windows.UI.Xaml.Controls.Button.GetElementBounds方法的典型用法代码示例。如果您正苦于以下问题:C# Button.GetElementBounds方法的具体用法?C# Button.GetElementBounds怎么用?C# Button.GetElementBounds使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Windows.UI.Xaml.Controls.Button的用法示例。


在下文中一共展示了Button.GetElementBounds方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: OpenPopup

        private void OpenPopup(Popup popupPanel, PlaneProjection panelCarrot, Button panelButton, int horizontalOffset, int verticalOffset)
        {
            //First we need to find out how big our window is, so we can center to it.
            CoreWindow currentWindow = Window.Current.CoreWindow;

            //Set our background rectangle to fill the entire window
            rectBackgroundHide.Height = currentWindow.Bounds.Height;
            rectBackgroundHide.Width = currentWindow.Bounds.Width;
            rectBackgroundHide.Margin = new Thickness(0, 0, 0, 0);

            //Make sure the background is visible
            rectBackgroundHide.Visibility = Windows.UI.Xaml.Visibility.Visible;

            //Now we figure out where the center of the screen is, and we 
            //move the popup to that location.
            var buttonBounds = panelButton.GetElementBounds(this);

            popupPanel.HorizontalOffset = buttonBounds.Left + horizontalOffset;
            popupPanel.VerticalOffset = buttonBounds.Top + verticalOffset;

            panelCarrot.RotationZ = 0;
            popupPanel.IsOpen = true;
        }
开发者ID:diagonalwalnut,项目名称:GodTools,代码行数:23,代码来源:slide7.xaml.cs


注:本文中的Windows.UI.Xaml.Controls.Button.GetElementBounds方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。