1 write to SelectedType
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\View\TypeBrowser.xaml.cs (1)
412SelectedType = (null != entry ? entry.Data as Type : null);
10 references to SelectedType
System.Activities.Presentation (10)
System.Activities.Presentation\System\Activities\Presentation\View\TypeBrowser.xaml.cs (10)
189else if (e.Key == Key.Enter && null != SelectedType) 214string strName = this.SelectedType.FullName; 227Type result = this.SelectedType; 396if (entry != null && this.SelectedType != entry.Data as Type) 399if (null != this.SelectedType) 402typeEntryTextBox.Text = TypeNameHelper.GetDisplayName(this.SelectedType, true); 414if (null != this.SelectedType) 416if (this.SelectedType.IsGenericTypeDefinition) 419Type[] generics = this.SelectedType.GetGenericArguments(); 427this.ConcreteType = this.SelectedType;