将WPF窗口停靠在屏幕窗口7/8的左/右侧

时间:2014-05-17 18:09:39

标签: c# .net wpf

在Window Forms和WPF中都有.WindowState我可以设置为

MinimizedmaximizedNormal

我想知道是否有类似的东西用于将窗口对接到屏幕的左/右侧,就像 Win + < - / - > Windows 7/8的密钥?

我用Google搜索,似乎人们调用Win32 API并在自己的

上实现

我是否应该编写自定义对接代码,或者是否有一个简单的标记我可以设置在WindowState之类的地方?

1 个答案:

答案 0 :(得分:4)

不,没有可以设置的标志。 Windows更改窗口的矩形,并且WPF窗口不知道发生了什么,除了矩形已更改。

自行更改矩形非常简单。 (实际上取代Windows的功能更具挑战性。)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;


namespace StackOverflowWPF
{
   /// <summary>
   /// Interaction logic for MainWindow.xaml
   /// </summary>
   public partial class MainWindow : Window
   {
      public MainWindow()
      {
         InitializeComponent();
      }

      private void Button_Click_1(object sender, RoutedEventArgs e)
      {
         this.Top = 0;
         this.Left = 0;
         System.Drawing.Rectangle screenBounds = System.Windows.Forms.Screen.PrimaryScreen.Bounds;
         this.Width = screenBounds.Width / 2;
         this.Height = screenBounds.Height;
      }
   }
}