32 lines
907 B
C#
32 lines
907 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Windows.Forms;
|
|
using Config.Entities;
|
|
using TBF.Rig.GenericDevices;
|
|
using TBF.Resources;
|
|
|
|
namespace TBF.UI.Procedures.TestWizard
|
|
{
|
|
public partial class ConfirmUpdatingTests : Form
|
|
{
|
|
Procedure loadedProcedure;
|
|
IList<ITestMethod> testMethods;
|
|
|
|
public ConfirmUpdatingTests(Procedure loadedProcedure, IList<ITestMethod> testMethods)
|
|
{
|
|
this.loadedProcedure = loadedProcedure;
|
|
this.testMethods = testMethods;
|
|
|
|
InitializeComponent();
|
|
|
|
this.Icon = Properties.Resources.TBF_icon;
|
|
|
|
Text = Strings.Confirmation;
|
|
messageLabel.Text = Strings.Do_you_want_to_update_tests_QM;
|
|
backButton.Text = Strings.BackBtnText;
|
|
nextButton.Text = Strings.Update;
|
|
cancelButton.Text = Strings.CancelBtnText;
|
|
}
|
|
}
|
|
}
|