Esempio n. 1
0
        private void AddLabel_MouseClick(object sender, EventArgs e)
        {
            Dialogs.Album alb = new Dialogs.Album();
            alb.Initialize();

            alb.ShowDialog();

            UpdateRequest?.Invoke(this, new EventArgs());
        }
Esempio n. 2
0
        private void EditLabel_MouseClick(object sender, EventArgs e)
        {
            if (Current != null)
            {
                Dialogs.Album alb = new Dialogs.Album();
                alb.Initialize(Current, Current.Path);

                alb.ShowDialog();

                UpdateRequest?.Invoke(this, new EventArgs());
            }
        }