是否有任何简单的方法可以防止WPF窗口在双显示器设置中跨越多个显示器?用"简单"我的意思是不编写代码隐藏来测量监视器大小并为窗口分配宽度。
如果窗口仅使用当前监视器上可用的部分(其中"当前"表示具有当前聚焦窗口的监视器),我更希望如此。如果用户调整窗口大小以使其覆盖两个监视器,则可以,但在窗口打开时,它将保留在一个监视器上。
以下是一个例子:
MainWindow.xaml:
<Window x:Class="MultiMonitorTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Button Content="Open Window"
Height="70"
HorizontalAlignment="Left"
Margin="165,147,0,0"
Name="button1"
VerticalAlignment="Top"
Width="179"
Click="button1_Click" />
</Grid>
</Window>
MainWIndow.xaml.cs:
using System.Windows;
namespace MultiMonitorTest
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
private void button1_Click(object sender, RoutedEventArgs e)
{
Window2 win = new Window2();
win.ShowDialog();
}
}
}
Window2.xaml:
<Window x:Class="MultiMonitorTest.Window2"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window2"
SizeToContent="WidthAndHeight">
<Grid>
<TextBox x:Name="txt"
Margin="10"
Background="LightPink"
AcceptsTab="True"
AcceptsReturn="True"
TextWrapping="Wrap"/>
</Grid>
</Window>
Window2.xaml.cs:
using System.Windows;
namespace MultiMonitorTest
{
public partial class Window2 : Window
{
public Window2()
{
InitializeComponent();
txt.Text = new string('x', 1000);
}
}
}
点击&#34;打开窗口&#34;按钮,新窗口打开两个监视器。如果Window2完全保留在当前的监视器中,我更愿意。
答案 0 :(得分:0)
嗯,您可以使用与第二个父窗口相同的宽度,高度(可能还有位置)。没有额外的代码,我认为你不能真正强迫窗口跨越两个监视器。但是,您可以使用有限的代码在一个而不是两个上启动它。
WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen; // in your Window Xaml
//and combine with
Rectangle workingArea = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea; // Reference System.Windows.Forms and set left, top, width and height accordingly.
这是我能想到的最好的选择,而不必编写“大量”代码(这会将其置于主屏幕的工作区域)。如果你真的想限制你的窗口跨越多个监视器当然是可能的,但需要一些工作。 一个很好的起点是WindowInteropHelper类。