我在wpf中完成了自定义消息框。
自定义消息框视图xaml :
<Window x:Class="My.XAML.Controls.Windows.WpfMessageBox"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="WpfMessageBox" MinHeight="160"
MinWidth="420" MaxHeight="750" MaxWidth="750"
Background="Transparent"
SizeToContent="WidthAndHeight"
WindowStartupLocation="CenterScreen"
ShowInTaskbar="False" ResizeMode="NoResize"
WindowStyle="None" Topmost="True">
</Window>
在我的主窗口中,当用户点击按钮时,我会显示此自定义wpf消息框窗口,作为点击按钮时调用的示例:
var messageBoxResult = WpfMessageBox.Show("Title", "MyMessage",
MessageBoxButton.YesNo, WpfMessageBox.MessageBoxImage.Warning);
if (messageBoxResult != MessageBoxResult.Yes) return;
*自定义消息框代码隐藏xaml.cs:
public partial class WpfMessageBox : Window
{
private WpfMessageBox()
{
InitializeComponent();
}
public static MessageBoxResult Show(string caption, string text, MessageBoxButton button, MessageBoxImage image, EnumLocation location)
{
switch (location)
{
case EnumLocation.TopLeft:
// Locates at top left
break;
case EnumLocation.TopCenter:
// Locates at top center
break;
case EnumLocation.TopRight:
// Locates at top right
break;
// and so on with the rest of cases: middle left, middle center, middle right, bottom left, bottom center and bottom right.
}
}
}
默认情况下,此自定义消息框在主屏幕中央打开。
我现在要做的是将参数(枚举)传递给我的WpfMessageBox.Show方法,以指示我希望它位于主屏幕中的自定义消息框。参数将是:
我该怎么做?
答案 0 :(得分:1)
我该怎么做?
将窗口的WindowStartupLocation
属性设置为Manual
,然后设置窗口的Left
和Top
属性以确定其初始位置。
//top-left:
WindowStartupLocation = WindowStartupLocation.Manual;
Left = 0;
Top = 0;
您需要计算要使用的值,例如使用SystemParameters.PrimaryScreenWidth
和SystemParameters.PrimaryScreenHeight
属性。
答案 1 :(得分:0)
在xaml中设置“手动”后,转到c#并相应地设置位置。
// "TL", "TR", "BL", "BR" };
switch (position)
{
case "TL":
{
this.Left = 0;
this.Top = 0;
break;
}
case "TR":
{
this.Left = SystemParameters.PrimaryScreenWidth - this.Width;
this.Top = 0;
break;
}
case "BL":
{
this.Left = 0;
this.Top = SystemParameters.WorkArea.Height - Height;
break;
}
case "BR":
{
this.Left = SystemParameters.WorkArea.Width - Width;
this.Top = SystemParameters.WorkArea.Height - Height;
break;
}
}