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

36 lines
917 B
C#

using Remotely.Desktop.Win.ViewModels;
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Forms;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
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;
}
}
}