コード例 #1
0
        /// <summary>
        /// Adds a description to the Description textbox, clicks Save Changes, then clicks the Mark Complete button
        /// </summary>
        private void AddDescriptionAndMarkMilestoneComplete()
        {
            DescriptionTxt.SendKeys("wsefwefwefwewe");
            this.WaitUntilAll(Criteria.PERTraineePage.DescriptionSaveChangesButtonVisible);

            ClickAndWait(DescriptionSaveChangesBtn);
            Thread.Sleep(0200);

            ClickAndWait(MarkCompleteBtn);
        }
コード例 #2
0
        public AboutBox()
        {
            InitializeComponent();

            VersionTxt.Text   = AssemblyVersion;
            CopyrightTxt.Text = AssemblyCopyright;
            CompanyTxt.Text   = AssemblyCompany;
            DescriptionTxt.SetValue(NavigationService.TextProperty, AssemblyDescription);
            //DescriptionTxt.Text = AssemblyDescription;
        }
コード例 #3
0
ファイル: AdjustmentForm.cs プロジェクト: lynarvi/POS
 public void Clear()
 {
     Pcodetxt.Clear();
     qtytxt.Clear();
     CommandCb.Text = "";
     RemarksTxt.Clear();
     UserTxt.Text = "";
     DescriptionTxt.Clear();
     ReferenceNo();
 }
コード例 #4
0
        /// <summary>
        /// Adds a description to the Description textbox, clicks Save Changes, then clicks the Mark Complete button
        /// </summary>
        private void AddDescriptionAndSubmitMilestone(string clinicalSupervisorFullName)
        {
            DescriptionTxt.SendKeys("wsefwefwefwewe");
            this.WaitUntilAll(Criteria.DiplomaTraineePage.DescriptionSaveChangesButtonVisible);

            ClickAndWait(DescriptionSaveChangesBtn);
            Thread.Sleep(0400);

            ClickAndWait(SubmitBtn);

            SubmitMilestoneFormSelectReviewerSelElem.SelectByText(clinicalSupervisorFullName);

            ClickAndWait(SubmitMilestoneFormSubmitBtn);
        }