1 write to hintTextGrid
System.Data (1)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\WorkflowItemsPresenter.cs (1)
82
hintTextGrid
= new Grid();
13 references to hintTextGrid
System.Data (13)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\WorkflowItemsPresenter.cs (13)
83
hintTextGrid
.Focusable = false;
84
hintTextGrid
.Background = Brushes.Transparent;
85
hintTextGrid
.DataContext = this;
86
hintTextGrid
.SetBinding(Grid.MinHeightProperty, "MinHeight");
87
hintTextGrid
.SetBinding(Grid.MinWidthProperty, "MinWidth");
96
((IAddChild)
hintTextGrid
).AddChild(text);
105
Grid.SetRow(this.
hintTextGrid
, 1);
106
Grid.SetColumn(this.
hintTextGrid
, 0);
108
this.outerGrid.Children.Add(
hintTextGrid
);
295
this.
hintTextGrid
.Visibility = Visibility.Collapsed;
299
this.
hintTextGrid
.Visibility = Visibility.Visible;
445
if (this.
hintTextGrid
!= null && this.Items != null)
447
this.
hintTextGrid
.Visibility = (this.Items.Count == 0 && !string.IsNullOrEmpty(hintText)) ? Visibility.Visible : Visibility.Collapsed;