将WPF窗口向右移动几个像素

本文关键字:几个 像素 移动 WPF 窗口 右移 | 更新日期: 2023-09-27 18:20:26

如何从c#代码中移动wpf窗口?我只是想写一些类似的东西

if(condition)
 {
   myWPFWindow.MoveThisWindowSeveralPixelsRight();
 }

将WPF窗口向右移动几个像素

修改Left值。

myWPFWindow.Left += 10;