Base:
property
Text
System.Windows.Forms.TextBoxBase.Text
2 overrides of Text
System.Windows.Forms (2)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
6579public override string Text {
winforms\Managed\System\WinForms\UpDownBase.cs (1)
1274public override string Text {
107 writes to Text
System.Web.Entity.Design (5)
System\Data\WebControls\Design\EntityDataSourceConfigureObjectContextPanel.cs (1)
353_connectionStringTextBox.Text = connStrBuilderItem.ConnectionString;
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.cs (1)
322_selectAdvancedTextBox.Text = select;
System\Data\WebControls\Design\EntityDataSourceStatementEditorForm.cs (3)
64_statementTextBox.Text = statement; 338_statementTextBox.Text = null; 342_statementTextBox.Text = _cachedStatementText;
System.Web.Mobile (36)
UI\MobileControls\Design\AppliedDeviceFiltersDialog.cs (3)
196this._tbArgument.Text = String.Empty; 505_tbArgument.Text = SelectedAppliedFilter.Argument; 510_tbArgument.Text = String.Empty;
UI\MobileControls\Design\DeviceFilterEditorDialog.cs (4)
570_txtArgument.Text = node.DeviceFilter.Argument; 580_txtType.Text = node.DeviceFilter.Type; 581_txtMethod.Text = node.DeviceFilter.Method; 593_txtArgument.Text = String.Empty;
UI\MobileControls\Design\ListGeneralPage.cs (6)
236_itemCountTextBox.Text = list.ItemCount.ToString(CultureInfo.InvariantCulture); 237_itemsPerPageTextBox.Text = list.ItemsPerPage.ToString(CultureInfo.InvariantCulture); 275_rowsTextBox.Text = selectionList.Rows.ToString(CultureInfo.InvariantCulture); 335_itemCountTextBox.Text = list.ItemCount.ToString(CultureInfo.InvariantCulture); 350_itemsPerPageTextBox.Text = list.ItemsPerPage.ToString(CultureInfo.InvariantCulture); 391_rowsTextBox.Text = selectionList.Rows.ToString(CultureInfo.InvariantCulture);
UI\MobileControls\Design\ListItemsPage.cs (5)
162_txtValue.Text = String.Empty; 184_txtValue.Text = currentItemNode.Value; 192_txtValue.Text = String.Empty; 207_txtValue.Text = ((ItemTreeNode)CurrentNode).Value = CurrentNode.Name; 303_txtValue.Text = String.Empty;
UI\MobileControls\Design\ObjectListCommandsPage.cs (3)
132_txtText.Text = String.Empty; 155_txtText.Text = currentCommandNode.Text; 159_txtText.Text = String.Empty;
UI\MobileControls\Design\ObjectListFieldsPage.cs (6)
164_txtDataFormatString.Text = String.Empty; 165_txtTitle.Text = String.Empty; 216_txtDataFormatString.Text = currentFieldNode.DataFormatString; 217_txtTitle.Text = currentFieldNode.Title; 223_txtDataFormatString.Text = String.Empty; 224_txtTitle.Text = String.Empty;
UI\MobileControls\Design\ObjectListGeneralPage.cs (7)
163_txtItemCount.Text = objectList.ItemCount.ToString(CultureInfo.InvariantCulture); 164_txtItemsPerPage.Text = objectList.ItemsPerPage.ToString(CultureInfo.InvariantCulture); 165_txtBackCommandText.Text = objectList.BackCommandText; 166_txtDetailsCommandText.Text = objectList.DetailsCommandText; 167_txtMoreText.Text = objectList.MoreText; 209_txtItemCount.Text = objectList.ItemCount.ToString(CultureInfo.InvariantCulture); 224_txtItemsPerPage.Text = objectList.ItemsPerPage.ToString(CultureInfo.InvariantCulture);
UI\MobileControls\Design\StylesEditorDialog.cs (2)
520_txtType.Text = String.Empty; 524_txtType.Text = ((StyleNode)SelectedStyle).FullName;
System.Windows.Forms (17)
winforms\Managed\System\WinForms\DataGridTextBoxColumn.cs (10)
310edit.Text = GetText(GetColumnValueAtRow(source, rowNum)); 312edit.Text = displayText; 402edit.Text = NullText; 428edit.Text = NullText; 434edit.Text = ((IFormattable)value).ToString(format, formatInfo); 436edit.Text = value.ToString(); 439edit.Text = typeConverter.ConvertToString(value); 475edit.Text = GetText(GetColumnValueAtRow(source, rowNum)); 481edit.Text = displayText; 623edit.Text = oldValue;
winforms\Managed\System\WinForms\DataGridViewTextBoxCell.cs (2)
546textBox.Text = string.Empty; 550textBox.Text = initialFormattedValueStr;
winforms\Managed\System\WinForms\DataGridViewTextBoxEditingControl.cs (1)
74this.Text = (string) value;
winforms\Managed\System\WinForms\PropertyGridInternal\GridErrorDlg.cs (1)
61this.details.Text = value;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
6585base.Text = value;
winforms\Managed\System\WinForms\ThreadExceptionDialog.cs (1)
345details.Text = detailsText;
winforms\Managed\System\WinForms\UpDownBase.cs (1)
1280base.Text = value;
System.Workflow.Activities (20)
Rules\Design\Dialogs\ConditionBrowserDialog.cs (1)
152previewBox.Text = string.Empty;
Rules\Design\Dialogs\IntellisenseTextBox.cs (1)
327this.Text = prefix + fill + suffix;
Rules\Design\Dialogs\RenameRuleObjectDialog.cs (1)
41this.ruleNameTextBox.Text = oldName;
Rules\Design\Dialogs\RuleConditionDialog.cs (3)
90this.conditionTextBox.Text = ruleExpressionCondition.ToString().Replace("\n", "\r\n"); 93this.conditionTextBox.Text = string.Empty; 133this.conditionTextBox.Text = this.ruleExpressionCondition.ToString().Replace("\n", "\r\n");
Rules\Design\Dialogs\RuleSetDialog.cs (14)
155this.nameTextBox.Text = rule.Name; 158this.priorityTextBox.Text = rule.Priority.ToString(CultureInfo.CurrentCulture); 161this.conditionTextBox.Text = rule.Condition != null ? rule.Condition.ToString().Replace("\n", "\r\n") : string.Empty; 173this.thenTextBox.Text = GetActionsString(rule.ThenActions); 185this.elseTextBox.Text = GetActionsString(rule.ElseActions); 200this.nameTextBox.Text = string.Empty; 203this.priorityTextBox.Text = string.Empty; 204this.conditionTextBox.Text = string.Empty; 205this.thenTextBox.Text = string.Empty; 206this.elseTextBox.Text = string.Empty; 234this.conditionTextBox.Text = ruleCondition.ToString().Replace("\n", "\r\n"); 255this.thenTextBox.Text = GetActionsString(ruleThenActions); 279this.elseTextBox.Text = GetActionsString(ruleElseActions); 350this.nameTextBox.Text = ruleName;
System.Workflow.ComponentModel (14)
AuthoringOM\Design\Dialogs\ActivityBindForm.cs (1)
204this.memberNameTextBox.Text = DesignerHelpers.GenerateUniqueIdentifier(this.serviceProvider, activity.Name + "_" + context.PropertyDescriptor.Name, customPropertyNames.ToArray());
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (3)
361this.themeNameTextBox.Text = this.bufferedTheme.Name; 362this.themeLocationTextBox.Text = this.bufferedTheme.FilePath; 599this.themeLocationTextBox.Text = fileDialog.FileName;
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (6)
422this.typeTextBox.Text = GetSimpleTypeFullName(actualType); 532this.typeTextBox.Text = string.Empty; 533this.typeTextBox.Text = this.lastComboboxValue; 586this.typeTextBox.Text = (this.artifactListView.SelectedItems[0].Tag as Type).FullName; 813this.artifactLabel.Text = this.typeFilterProvider.FilterDescription; 1074this.typeTextBox.Text = typeName;
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (4)
180this.customHeaderText.Text = userHeader; 216this.customFooterText.Text = userFooter; 1093this.customHeaderText.Text = this.headerTextComboBox.Text; 1100this.customFooterText.Text = this.footerTextComboBox.Text;
System.WorkflowServices (8)
System\Workflow\Activities\Design\EditableLabelControl.cs (2)
65TextBox.Text = value; 84TextBox.Text = label.Text;
System\Workflow\Activities\Design\ServiceContractDetailViewControl.cs (2)
26contractNameTextBox.Text = listItem.Name; 62this.contractNameTextBox.Text = oldName;
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (4)
98this.operationNameTextBox.Text = operationInfoBase.Name; 99this.permissionRoleTextBox.Text = operationInfoBase.PrincipalPermissionRole; 100this.permissionNameTextBox.Text = operationInfoBase.PrincipalPermissionName; 354this.operationNameTextBox.Text = oldName;
WsatUI (7)
MMCUI\TraceOptionsForm.cs (2)
35textLogFileSize.Text = ETWWsatTraceSession.GetMaxTraceFileSizeFromReg().ToString(System.Globalization.CultureInfo.InvariantCulture); 52textLogFileSize.Text = ETWWsatTraceSession.DefaultLogFileSize.ToString(System.Globalization.CultureInfo.InvariantCulture);
MMCUI\WSATControl.cs (5)
218this.textBoxHttpsPort.Text = this.config.HttpsPort.ToString(CultureInfo.InvariantCulture); 219this.textBoxEndpointCert.Text = GetDisplayStringForCert(config.X509Certificate); 220this.textBoxDefaultTimeout.Text = this.config.DefaultTimeout.ToString(CultureInfo.InvariantCulture); 221this.textBoxMaxTimeout.Text = this.config.MaxTimeout.ToString(CultureInfo.InvariantCulture); 327textBoxEndpointCert.Text = GetDisplayStringForCert(config.X509Certificate);
112 references to Text
System.Web.Entity.Design (6)
System\Data\WebControls\Design\EntityDataSourceConfigureObjectContextPanel.cs (3)
133_configureObjectContext.SelectConnectionStringHasValue(!String.IsNullOrEmpty(_connectionStringTextBox.Text)); 158_configureObjectContext.SelectConnectionStringHasValue(!String.IsNullOrEmpty(_connectionStringTextBox.Text)); 265selectedConnection = _configureObjectContext.GetEntityConnectionStringBuilderItem(_connectionStringTextBox.Text);
System\Data\WebControls\Design\EntityDataSourceDataSelectionPanel.cs (1)
189_dataSelection.SelectAdvancedSelect(_selectAdvancedTextBox.Text);
System\Data\WebControls\Design\EntityDataSourceStatementEditorForm.cs (2)
105return _statementTextBox.Text; 337_cachedStatementText = _statementTextBox.Text;
System.Web.Mobile (22)
UI\MobileControls\Design\AppliedDeviceFiltersDialog.cs (2)
577Debug.Assert(_tbArgument.Text.Length == 0, 583SelectedAppliedFilter.Argument = _tbArgument.Text;
UI\MobileControls\Design\DeviceFilterEditorDialog.cs (3)
682node.Argument = _txtArgument.Text; 686node.Type = _txtType.Text; 690node.Method = _txtMethod.Text;
UI\MobileControls\Design\ListGeneralPage.cs (6)
327if (_itemCountTextBox.Text.Length != 0) 329itemCount = Int32.Parse(_itemCountTextBox.Text, CultureInfo.InvariantCulture); 342if (_itemsPerPageTextBox.Text.Length != 0) 344itemsPerPage = Int32.Parse(_itemsPerPageTextBox.Text, CultureInfo.InvariantCulture); 383if (_rowsTextBox.Text.Length != 0) 385rows = Int32.Parse(_rowsTextBox.Text, CultureInfo.InvariantCulture);
UI\MobileControls\Design\ListItemsPage.cs (1)
250((ItemTreeNode)CurrentNode).Value = _txtValue.Text;
UI\MobileControls\Design\ObjectListCommandsPage.cs (1)
226((CommandTreeNode)CurrentNode).Text = _txtText.Text;
UI\MobileControls\Design\ObjectListFieldsPage.cs (2)
280currentFieldNode.DataFormatString = _txtDataFormatString.Text; 284currentFieldNode.Title = _txtTitle.Text;
UI\MobileControls\Design\ObjectListGeneralPage.cs (7)
201if (_txtItemCount.Text.Length != 0) 203itemCount = Int32.Parse(_txtItemCount.Text, CultureInfo.InvariantCulture); 216if (_txtItemsPerPage.Text.Length != 0) 218itemsPerPage = Int32.Parse(_txtItemsPerPage.Text, CultureInfo.InvariantCulture); 227objectList.BackCommandText = _txtBackCommandText.Text; 228objectList.DetailsCommandText = _txtDetailsCommandText.Text; 229objectList.MoreText = _txtMoreText.Text;
System.Windows.Forms (24)
winforms\Managed\System\WinForms\DataGridTextBox.cs (7)
139if (SelectionStart + SelectionLength == Text.Length) 149(this.IsInEditOrNavigateMode && this.SelectionLength == Text.Length)) 158if (Text.IndexOf("\r\n", end) == -1) 166if ( Text.IndexOf("\r\n") < 0 || SelectionStart + SelectionLength < Text.IndexOf("\r\n")) 171if (SelectionLength == Text.Length) 217SelectionStart = Text.Length;
winforms\Managed\System\WinForms\DataGridTextBoxColumn.cs (5)
425object value = edit.Text; 432value = (object) parseMethod.Invoke(null, new object[] {edit.Text, this.FormatInfo}); 438value = typeConverter.ConvertFromString(edit.Text); 508oldValue = edit.Text; 517int end = edit.Text.Length;
winforms\Managed\System\WinForms\DataGridViewTextBoxEditingControl.cs (9)
162if ((this.RightToLeft == RightToLeft.No && !(this.SelectionLength == 0 && this.SelectionStart == this.Text.Length)) || 174(this.RightToLeft == RightToLeft.Yes && !(this.SelectionLength == 0 && this.SelectionStart == this.Text.Length))) 184if (this.Text.IndexOf("\r\n", end) != -1) 193if (!(this.Text.IndexOf("\r\n") < 0 || this.SelectionStart + this.SelectionLength < this.Text.IndexOf("\r\n"))) 201if (this.SelectionLength != this.Text.Length) 217this.SelectionStart < this.Text.Length) 236return this.Text; 250this.SelectionStart = this.Text.Length;
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
6581return base.Text;
winforms\Managed\System\WinForms\UpDownBase.cs (2)
1276return base.Text; 1279bool valueChanged = (value != base.Text);
System.Workflow.Activities (25)
Rules\Design\Dialogs\IntellisenseTextBox.cs (11)
87string currentValue = this.Text; 144string currentValue = this.Text; 159UpdateIntellisenceDropDown(this.Text.Substring(0, selectionStart - CurrentPrefix.Length)); 168if (this.Text.Length > 0) 320if (suffixStart >= this.Text.Length) 321suffixStart = this.Text.Length; 323string prefix = this.Text.Substring(0, prefixEnd); 325string suffix = this.Text.Substring(suffixStart, this.Text.Length - suffixStart); 428if (charIndex > 0 && this.Text[charIndex - 1] == '\n') 595string textTillCaret = this.Text.Substring(0, this.SelectionStart);
Rules\Design\Dialogs\RenameRuleObjectDialog.cs (1)
70string newName = this.ruleNameTextBox.Text;
Rules\Design\Dialogs\RuleConditionDialog.cs (3)
100this.ruleParser.ParseCondition(this.conditionTextBox.Text); 130this.ruleExpressionCondition = (RuleExpressionCondition)this.ruleParser.ParseCondition(this.conditionTextBox.Text); 132if (!string.IsNullOrEmpty(this.conditionTextBox.Text))
Rules\Design\Dialogs\RuleSetDialog.cs (10)
164this.ruleParser.ParseCondition(this.conditionTextBox.Text); 176this.ruleParser.ParseStatementList(this.thenTextBox.Text); 188this.ruleParser.ParseStatementList(this.elseTextBox.Text); 231RuleCondition ruleCondition = this.ruleParser.ParseCondition(this.conditionTextBox.Text); 233if (!string.IsNullOrEmpty(this.conditionTextBox.Text)) 254List<RuleAction> ruleThenActions = this.ruleParser.ParseStatementList(this.thenTextBox.Text); 278List<RuleAction> ruleElseActions = this.ruleParser.ParseStatementList(this.elseTextBox.Text); 340if (this.nameTextBox.Text != rule.Name) 342string ruleName = this.nameTextBox.Text; 374rule.Priority = int.Parse(this.priorityTextBox.Text, CultureInfo.CurrentCulture);
System.Workflow.ComponentModel (21)
AuthoringOM\Design\Dialogs\ActivityBindForm.cs (1)
219this.newMemberName = this.memberNameTextBox.Text;
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (11)
422if (this.themeNameTextBox.Text == null || this.themeNameTextBox.Text.Trim().Length == 0) 429if (this.themeLocationTextBox.Text == null) 436string path = this.themeLocationTextBox.Text.Trim(); 480textBox.SelectionLength = (textBox.Text != null) ? textBox.Text.Length : 0; 488if (!this.bufferedTheme.FilePath.Equals(this.themeLocationTextBox.Text.Trim(), StringComparison.OrdinalIgnoreCase)) 505this.bufferedTheme.Name = this.themeNameTextBox.Text.Trim(); 507this.bufferedTheme.Save(this.themeLocationTextBox.Text.Trim()); 515this.themeLocationTextBox.SelectionLength = (this.themeLocationTextBox.Text != null) ? this.themeLocationTextBox.Text.Length : 0;
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (7)
529if (this.lastComboboxValue != this.typeTextBox.Text) 531this.lastComboboxValue = this.typeTextBox.Text; 534this.typeTextBox.SelectionStart = this.typeTextBox.Text.Length; 546Type type = typeProvider.GetType(this.typeTextBox.Text); 652Type actualType = typeProvider.GetType(this.typeTextBox.Text); 656this.lastComboboxValue = this.typeTextBox.Text; 1020selectedType = typeProvider.GetType(this.typeTextBox.Text);
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (2)
985this.printDocument.PageSetupData.HeaderTemplate = this.customHeaderText.Text; 997this.printDocument.PageSetupData.FooterTemplate = this.customFooterText.Text;
System.WorkflowServices (9)
System\Workflow\Activities\Design\EditableLabelControl.cs (2)
60return TextBox.Text; 102this.Text = TextBox.Text;
System\Workflow\Activities\Design\ServiceContractDetailViewControl.cs (1)
55contractListItem.Name = this.contractNameTextBox.Text;
System\Workflow\Activities\Design\ServiceOperationDetailViewControl.cs (6)
339workflowOperationListItem.Operation.Name = this.operationNameTextBox.Text; 347operationListItem.Name = this.operationNameTextBox.Text; 452workflowOperationListItem.Operation.PrincipalPermissionName = this.permissionNameTextBox.Text; 459reflectedOperationListItem.Operation.PrincipalPermissionName = this.permissionNameTextBox.Text; 470workflowOperationListItem.Operation.PrincipalPermissionRole = this.permissionRoleTextBox.Text; 477reflectedOperationListItem.Operation.PrincipalPermissionRole = this.permissionRoleTextBox.Text;
WsatUI (5)
MMCUI\TraceOptionsForm.cs (2)
63bool ret = UInt32.TryParse(textLogFileSize.Text, out fileSize); 134bool ret = UInt32.TryParse(textLogFileSize.Text, out fileSize);
MMCUI\WSATControl.cs (3)
233if (UInt16.TryParse(this.textBoxMaxTimeout.Text, out shortTemp)) 248if (UInt16.TryParse(this.textBoxHttpsPort.Text, out shortTemp)) 260if (UInt16.TryParse(this.textBoxDefaultTimeout.Text, out shortTemp))