Remotely/Desktop.Win/Views/FileTransferWindow.xaml.cs
2021-07-29 07:56:44 -07:00

26 lines
614 B
C#

using System;
using System.Windows;
using System.Windows.Forms;
namespace Remotely.Desktop.Win.Views
{
/// <summary>
/// Interaction logic for FileTransferWindow.xaml
/// </summary>
public partial class FileTransferWindow : Window
{
public FileTransferWindow()
{
InitializeComponent();
Left = Screen.PrimaryScreen.WorkingArea.Right - Width;
Top = Screen.PrimaryScreen.WorkingArea.Bottom - Height;
}
private void Window_ContentRendered(object sender, EventArgs e)
{
Topmost = false;
}
}
}