Statistics
| Branch: | Revision:

root / trunk / Pithos.Client.WPF / Shell / MiniStatusView.xaml.cs @ 70e0b702

History | View | Annotate | Download (892 Bytes)

1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Windows;
6
using System.Windows.Controls;
7
using System.Windows.Data;
8
using System.Windows.Documents;
9
using System.Windows.Input;
10
using System.Windows.Media;
11
using System.Windows.Media.Imaging;
12
using System.Windows.Shapes;
13

    
14
namespace Pithos.Client.WPF.Shell
15
{
16
    /// <summary>
17
    /// Interaction logic for MiniStatusView.xaml
18
    /// </summary>
19
    public partial class MiniStatusView : Window
20
    {
21
        public MiniStatusView()
22
        {
23
            InitializeComponent();
24

    
25
            this.Top=System.Windows.SystemParameters.WorkArea.Height - this.Height;
26
            this.Left = System.Windows.SystemParameters.WorkArea.Width - this.Width;
27
        }
28

    
29
        private void imgClose_MouseDown(object sender, MouseButtonEventArgs e)
30
        {
31
            this.Close();
32
        }
33
    }
34
}