Beispiel #1
0
 public static void modifyMode(long mode)
 {
     VIGallery.updateMode(mode);
     foreach (Carpeta p in _carpetas)
     {
         p.changeMode(mode);
     }
 }
Beispiel #2
0
 public Carpeta(VIGallery ventana, WrapPanelPrincipal primerPanel, Menu menu, Carpeta carpetaPadre)
 {
     InitializeComponent();
     Title.SetText("");
     _carpetaPadre  = carpetaPadre;
     _primerPanel   = primerPanel;
     _menu          = menu;
     _archivos      = new List <Archivo>();
     _carpetasHijo  = new List <Carpeta>();
     _ventanaMain   = ventana;
     _defaultCanvas = canvasFolder;
     _profile       = VIGallery._profile;
     changeMode(_profile.mode);
 }
Beispiel #3
0
        /**
         * Abre una nueva ventana con el nuevo perfil seleccionado y cierra la actual
         */
        private void changeProfile(object sender, RoutedEventArgs e)
        {
            if (_profile.nombre.CompareTo(_newSelectedProfile.nombre) != 0)
            {
                _profile       = _newSelectedProfile;
                changedProfile = true;
                VIGallery vi = new VIGallery(_profile);

                vi.loadDataConexion(_profile.id);

                vi.Show();
                this.Close();
            }
            else
            {
                MessageBox.Show("El perfil ya está seleccionado");
            }
        }
Beispiel #4
0
 public static void reloadProfiles()
 {
     _perfiles = Conexion.loadProfiles(VIGallery.getUser().id);
 }