diff options
Diffstat (limited to 'Software/Visual_Studio/VSIX/Tango.BuildExtensions/ProgressForm.cs')
| -rw-r--r-- | Software/Visual_Studio/VSIX/Tango.BuildExtensions/ProgressForm.cs | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Software/Visual_Studio/VSIX/Tango.BuildExtensions/ProgressForm.cs b/Software/Visual_Studio/VSIX/Tango.BuildExtensions/ProgressForm.cs new file mode 100644 index 000000000..349721155 --- /dev/null +++ b/Software/Visual_Studio/VSIX/Tango.BuildExtensions/ProgressForm.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Tango.BuildExtensions +{ + public partial class SelectForm : Form + { + public SelectForm() + { + InitializeComponent(); + } + + public void SetStatus(String text) + { + lbSTatus.Text = text; + } + + protected override bool ShowWithoutActivation + { + get + { + return true; + } + } + } +} |
