3 writes to HintText
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (3)
1230this.HintText = SR.ExpressionDefaultText; 1266this.HintText = SR.UnsupportedExpressionHintText; 1345this.HintText = (null == customHint || string.IsNullOrEmpty(customHint.Description) ?
6 references to HintText
System.Activities.Presentation (6)
System.Activities.Presentation\System\Activities\Presentation\View\ExpressionTextBox.xaml.cs (1)
756expressionTextBox.InitializeHintText(editor.HintText);
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (5)
1228if (this.HintText == SR.UnsupportedExpressionHintText) 1346(string.Equals(this.HintText, SR.ExpressionDefaultText) ? SR.ExpressionDefaultText : this.HintText) : customHint.Description); 1349if (this.HintText != null) 1351hint = this.HintText.Trim(new char[] { '<', '>' });