- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
据我所知,ContentDialog
的默认行为应该是让它在 PC 上居中并在移动设备上对齐到顶部,但就我而言,即使在 PC 上我也将它对齐到顶部并且我不明白发生了什么。
我正在使用代码隐藏创建它,这是我正在使用的代码片段:
// Creates the password box
var passwordBox = new PasswordBox {IsPasswordRevealButtonEnabled = true, Margin = new Thickness(5)};
// Creates the StackPanel with the content
var contentPanel = new StackPanel();
contentPanel.Children.Add(new TextBlock
{
Text = "Insert your password to access the application",
Margin = new Thickness(5),
TextWrapping = TextWrapping.WrapWholeWords
});
contentPanel.Children.Add(passwordBox);
// Creates the password dialog
_passwordDialog = new ContentDialog
{
PrimaryButtonText = "accept",
IsPrimaryButtonEnabled = false,
SecondaryButtonText = "exit",
Title = "Authentication",
Content = contentPanel
};
// Report that the dialog has been opened to avoid overlapping
_passwordDialog.Opened += (s, e) =>
{
// HACK - opacity set to 0 to avoid seeing behind dialog
Window.Current.Content.Opacity = 0;
_canShowPasswordDialog = false;
};
// Report that the dialog has been closed to enable it again
_passwordDialog.Closed += (s, e) =>
{
// HACK - opacity set to 1 to reset the window to original options
Window.Current.Content.Opacity = 1;
_canShowPasswordDialog = true;
};
// Clear inserted password for next logins
_passwordDialog.PrimaryButtonClick += (s, e) =>
{
// ... login ...
};
// Close the app if the user doesn't insert the password
_passwordDialog.SecondaryButtonClick += (s, e) => { BootStrapper.Current.Exit(); };
// Set the binding to enable/disable the accept button
_passwordDialog.SetBinding(ContentDialog.IsPrimaryButtonEnabledProperty, new Binding
{
Source = passwordBox,
Path = new PropertyPath("Password"),
Mode = BindingMode.OneWay,
Converter = new PasswordValidatorConverter()
});
我已经尝试使用 VerticalAlignment
和 FullSizeDesired
但我没有得到预期的结果。
我该如何解决这个问题?
最佳答案
ContentDialog
就像Popup
控件一样,当它显示在页面上时,PopupRoot
持有它。但是和Popup
控件不同的是,ContentDialog
的放置位置是写在后面的代码中的,这个属性没有暴露给我们,我们无法更改。
From what I know, ContentDialog's default behavior should be to have it centered on PC.
ContentDialog
并不总是以 PC 为中心。我根据您发布的代码测试了 ContentDialog
。当页面高度小于 640 时,ContentDialog
与页面顶部对齐。当页面高度等于 640 或大于 640 时,它位于页面中心。
从上图可以看出,ContentDialog
的放置位置是由Page
的高度触发的。
关于c# - ContentDialog 未对齐以 UWP 为中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36384062/
在 UWP 中 ContentDialog仅调整到特定大小,然后内容被剪裁 - 不滚动。如果我包含一个 ScrollViewer在内容中,它只是随其内容无限增长,从不滚动。 最佳答案 由于我在其他地方
如果我多次按下登录按钮,它会触发消息:“异步操作未正确启动。任何时候只能打开一个 ContentDialog。” (延迟表示应用程序联系服务器以查看用户是否有效所花费的时间。) 如果我使用 Messa
在应用程序窗口外单击时,ContentDialog 是否会自动关闭?对话框异步返回值为 None。有没有办法让对话框保持打开状态,无论焦点如何? 最佳答案 自己找到答案: 订阅: Closing +=
我正在尝试像这样在我的应用中创建一个设置菜单 我知道该怎么做,但我对内容对话框的宽度有疑问,显然宽度有限制。 这是我的内容对话框的代码: Title="" Margin="12,0,-12,0" Ho
Windows Phone 8.1 为对话框和弹出按钮引入了一个新的过渡,看起来像 Venetian blind .我不喜欢这样;我更喜欢它在 Windows Phone 8 中旋转/倾斜的样子。有什
我正在使用深色主题为通用 Windows 平台编写一个应用程序,我注意到虽然我在使用 ContentDialog 显示模态对话框时正确地将请求的主题设置为深色> 类叠加层使整个页面变亮而不是变暗。 显
我有一个简单的问题。由于我一次只能打开一个 COtentDialog 并且在 ContentDialog 的关闭事件中,我有一个条件阻止 ContentDialog 关闭执行args.Cancel =
我正在尝试在我的 Windows 8.1 应用程序中创建一个模式进度叠加层。 我有一个创建 ContentDialog 的类,它会填满整个屏幕并异步显示,如下所示: _contentDialog =
我有一个 ContentDialog,当我在“MyPage”界面中单击一个按钮时,该 ContentDialog 包含一个按钮“Connexion”,让我导航到“ConnexionNvPage”页面这
所以我们一次只能打开一个内容对话框。这可以。但是在我的应用程序中有几个可以打开的内容对话框,我想避免创建自己的变量,因为我可能会忘记将它添加到某处,整个应用程序将崩溃(因为尝试打开第二个内容对话框会抛
我正在尝试为通用应用程序构建自定义 ContentDialog。但是,当其中一个文本 block 是多行时,窗口大小会过大。这是布局:
有没有办法让 ContentDialog 灯消失?这样,当用户单击 ContentDialog 之外的任何内容时,它应该关闭。 谢谢。 最佳答案 默认情况下,ContentDialog 放置在 Pop
据我所知,ContentDialog 的默认行为应该是让它在 PC 上居中并在移动设备上对齐到顶部,但就我而言,即使在 PC 上我也将它对齐到顶部并且我不明白发生了什么。 我正在使用代码隐藏创建它,这
在我的 UWP 应用程序中,我在 ContentDialog 中有一个 RichTextBlock,我为每个元素设置了一些示例高度以检查它是否有效。 我确定 RichTextBlock 中的内容高于
在我的 UWP 应用程序中,我显示了一个带有少量 TextBox 的 ContentDialog 并根据用户输入执行一些操作。我想要做的是这样的: ContentDialogResult result
在 UWP 中,当文本框的 KeyDown 事件检测到已按下 Enter 时,如何以编程方式单击 ContentDialog 的 PrimaryButton?只是尝试添加键盘快捷键以在文本框中接受答案
我需要将值从页面传递到 Contentdialog。请帮帮我 如何从任何页面向 ContentDialog 传递值 最佳答案 你可以重载构造函数。 例如,如果您有不带参数的标准构造函数 publ
我需要将值从页面传递到 Contentdialog。请帮帮我 如何从任何页面向 ContentDialog 传递值 最佳答案 你可以重载构造函数。 例如,如果您有不带参数的标准构造函数 publ
所以我正在使用:公共(public)密封部分类 SynchronizationDialog : ContentDialog。 我有一个 UWP 应用程序。当我按下 UWP 应用程序中的按钮时,Sync
我有一个辅助方法,它显示一个带有接受字符串数据的输入框的 ContentDialog。我的问题是,在调用者取回字符串之前单击“确定”大约需要 1 秒(这非常明显)。我推测可能是对话框在对话框返回之前淡
我是一名优秀的程序员,十分优秀!