Exemple #1
0
        /// <summary>
        /// Load the Picture Index
        /// </summary>
        private void LoadPictureIndex()
        {
            // toolStripStatusLabelInfo.Text = "Loading pictures";
            // show the "please wait dialog" and get the results from it
            FormWaitLoading fwl = new FormWaitLoading(_CurrentDirectory);

            fwl.ShowDialog();
            _PictureList        = fwl.Pictures;
            _PictureList.Saved += new PictureList.OnSaved(_PictureList_Saved);
            FillListBoxFiles();
        }
Exemple #2
0
 /// <summary>
 /// Load the Picture Index
 /// </summary>
 private void LoadPictureIndex()
 {
     // toolStripStatusLabelInfo.Text = "Loading pictures";
      // show the "please wait dialog" and get the results from it
      FormWaitLoading fwl = new FormWaitLoading(_CurrentDirectory);
      fwl.ShowDialog();
      _PictureList = fwl.Pictures;
      _PictureList.Saved += new PictureList.OnSaved(_PictureList_Saved);
      FillListBoxFiles();
 }