public SettingsOkno(Uporabnik user, Shramba shramba)
 {
     InitializeComponent();
     this.user    = user;
     ImagePath    = this.user.PotDoProfilneSlike;
     tip          = user.AccountState;
     this.shramba = shramba;
     Inicializacija();
 }
 private void Hidden(object sender, MouseButtonEventArgs e)
 {
     tip = TipStanja.hidden;
     SpremeniKrog();
 }
 private void Away(object sender, MouseButtonEventArgs e)
 {
     tip = TipStanja.away;
     SpremeniKrog();
 }
 private void donotdisturb(object sender, MouseButtonEventArgs e)
 {
     tip = TipStanja.doNotDisturb;
     SpremeniKrog();
 }
 private void active(object sender, MouseButtonEventArgs e)
 {
     tip = TipStanja.online;
     SpremeniKrog();
 }