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.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Shapes; namespace Remotely.Desktop.Win.Views { /// /// Interaction logic for PromptForAccessWindow.xaml /// public partial class PromptForAccessWindow : Window { public PromptForAccessWindow() { InitializeComponent(); } private void CloseButton_Click(object sender, RoutedEventArgs e) { Close(); } private void MinimizeButton_Click(object sender, RoutedEventArgs e) { this.WindowState = WindowState.Minimized; } private void Window_ContentRendered(object sender, EventArgs e) { Topmost = false; } private void Window_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) { DragMove(); } } }