private void PictureboxLoggedUserImageClick(object i_Sender, EventArgs i_E)
 {
     if (HomeClicked != null)
     {
         HomeClicked.Invoke(this, null);
     }
 }
 private void topPanel_HomeClicked(object sender, EventArgs e)
 {
     if (HomeClicked != null)
     {
         HomeClicked.Invoke(this, null);
     }
 }
        public void Reset()
        {
            ContextItems.Clear();

            ResetStatus();

            _templateLocalFolderPath = null;

            HomeClicked?.Invoke(this, EventArgs.Empty);
        }
Beispiel #4
0
        public void Reset() {
            ContextItems.Clear();

            IsCloning = false;
            IsCloningSuccess = false;
            IsCloningError = false;

            IsLoading = false;
            IsLoadingSuccess = false;
            IsLoadingError = false;

            IsCreating = false;
            IsCreatingSuccess = false;
            IsCreatingError = false;

            _templateLocalFolderPath = null;

            HomeClicked?.Invoke(this, EventArgs.Empty);
        }
Beispiel #5
0
 public void Home()
 {
     HomeClicked?.Invoke(this, EventArgs.Empty);
 }