Exemplo n.º 1
0
        public TOwner Uncheck()
        {
            if (IsChecked)
            {
                CheckBoxWrapper.Click();
            }

            return(Owner);
        }
Exemplo n.º 2
0
        public CallSiteDialog()
        {
            InitializeComponent();

            OkButton           = new ButtonWrapper(btnOK);
            CancellationButton = new ButtonWrapper(btnCancel);
            Signature          = new TextBoxWrapper(txtSignature);
            NoReturn           = new CheckBoxWrapper(chkNoReturn);
            this.interactor    = new CallSiteInteractor();
            interactor.Attach(this);
        }
Exemplo n.º 3
0
        public CallSiteDialog()
        {
            InitializeComponent();

            OkButton = new ButtonWrapper(btnOK);
            CancellationButton = new ButtonWrapper(btnCancel);
            Signature = new TextBoxWrapper(txtSignature);
            NoReturn = new CheckBoxWrapper(chkNoReturn);
            this.interactor = new CallSiteInteractor();
            interactor.Attach(this);
        }
Exemplo n.º 4
0
 public SearchDialog()
 {
     InitializeComponent();
     Patterns        = new ComboBoxWrapper(ddlPatterns);
     RegexCheckbox   = new CheckBoxWrapper(chkRegexp);
     Encodings       = new ComboBoxWrapper(ddlEncoding);
     Scopes          = new ComboBoxWrapper(ddlScope);
     SearchButton    = new ButtonWrapper(btnSearch);
     StartAddress    = new TextBoxWrapper(txtStartAddress);
     EndAddress      = new TextBoxWrapper(txtEndAddress);
     ScannedMemory   = new CheckBoxWrapper(chkScanned);
     UnscannedMemory = new CheckBoxWrapper(chkUnscanned);
     new SearchDialogInteractor().Attach(this);
 }
Exemplo n.º 5
0
 public SearchDialog()
 {
     InitializeComponent();
     Patterns = new ComboBoxWrapper(ddlPatterns);
     RegexCheckbox = new CheckBoxWrapper(chkRegexp);
     Encodings = new ComboBoxWrapper(ddlEncoding);
     Scopes = new ComboBoxWrapper(ddlScope);
     SearchButton = new ButtonWrapper(btnSearch);
     StartAddress = new TextBoxWrapper(txtStartAddress);
     EndAddress = new TextBoxWrapper(txtEndAddress);
     ScannedMemory = new CheckBoxWrapper(chkScanned);
     UnscannedMemory = new CheckBoxWrapper(chkUnscanned);
     new SearchDialogInteractor().Attach(this);
 }
Exemplo n.º 6
0
        public SymbolSourceDialog()
        {
            InitializeComponent();

            AssemblyFile         = new TextBoxWrapper(txtAssembly);
            BrowseAssemblyFile   = new ButtonWrapper(btnPickAssembly);
            OkButton             = new ButtonWrapper(btnOk);
            SymbolFileUrl        = new TextBoxWrapper(txtSymbolFile);
            BrowseSymbolFile     = new ButtonWrapper(btnSymbolFile);
            SymbolSourceClasses  = new ListboxWrapper(listClasses);
            SymbolSourceList     = new ListViewWrapper(listSources);
            CustomSourceCheckbox = new CheckBoxWrapper(chkCustomSource);

            new SymbolSourceInteractor().Attach(this);
        }