/// /// Copyright © 2003-2008 JetBrains s.r.o. /// You may distribute under the terms of the GNU General Public License, as published by the Free Software Foundation, version 2 (see License.txt in the repository root folder). /// using System.Drawing; using System.Windows.Forms; namespace JetBrains.Omea.Jiffa { public partial class ProgressDialog : Form { public ProgressDialog() { InitializeComponent(); } /// ///Gets or sets the image that is displayed by . /// /// /// ///The to display. /// ///1 public Image Image { get { return _image.Image; } set { _image.Image = value; } } /// /// Gets or sets the status text of the progress dialog. /// public string StatusText { get { return _labelStatus.Text; } set { _labelStatus.Text = value; } } } }