mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
36 lines
917 B
C#
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;
|
|
}
|
|
}
|
|
}
|