using System; using System.Collections.Generic; using System.Linq; 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 Pithos.Client.WPF.Shell { /// /// Interaction logic for MiniStatusView.xaml /// public partial class MiniStatusView : Window { public MiniStatusView() { InitializeComponent(); this.Top=System.Windows.SystemParameters.WorkArea.Height - this.Height; this.Left = System.Windows.SystemParameters.WorkArea.Width - this.Width; } private void imgClose_MouseDown(object sender, MouseButtonEventArgs e) { this.Close(); } } }