作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有什么方法可以在 Windows 8 Metro 居中显示Popup?
将 VerticalAlignment
和 HorizontalAlignment
设置为“Center”,将 VerticalOffset
和 HorizontalOffset
设置为 0 会导致如何弹出屏幕中央的左上角。
有什么办法可以做得很好吗?
为了让这个问题更难,这个弹出窗口在快照 View 中有不同的大小,它也应该居中。
有什么想法吗?
最佳答案
希望这会有所帮助,如何将弹出窗口放在 Canvas 中然后操作 Canvas ...
<Canvas x:Name="myCanvas"
HorizontalAlignment="Center"
Height="127"
VerticalAlignment="Center"
Width="191"/>
<Button Content="myButton"
Height="100"
Width="100"
Click="myButton_Click"/>
private void myButton_Click(object sender, RoutedEventArgs e)
{
Popup myPopup = new Popup();
myPopup.IsOpen = true;
TextBox myTextbox = new TextBox();
myTextbox.Text = "Your Message Here";
myPopup.Child = myTextbox;
myCanvas.Children.Add(myPopup);
}
尽情尝试...
关于c# - 如何在 C# 中使 Metro 风格应用程序中的 Popup 居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12226099/
我是一名优秀的程序员,十分优秀!