15 references to ValueType
System.Activities.Core.Presentation (15)
System\Activities\Core\Presentation\CaseKeyBox.ViewModel.cs (15)
136if (this.ValueType == null) 140if (this.ValueType.IsValueType) 144this.Value = Activator.CreateInstance(this.ValueType); 151else if ((this.ValueType == typeof(string)) && string.Equals(this.Value, String.Empty)) 157TypeConverter converter = XamlUtilities.GetConverter(this.ValueType); 172if (this.ValueType == null) 176bool isBool = this.ValueType == typeof(bool); 177bool isEnum = this.ValueType.IsEnum; 189this.ComboBoxItems = new ObservableCollection<string>(Enum.GetNames(this.ValueType).ToList()); 192else if (this.ValueType.IsValueType) 204if (this.ValueType == typeof(string)) 252if (this.ValueType == typeof(string)) 267else if (!this.ValueType.IsValueType && this.Text.Equals(Null)) 273TypeConverter converter = XamlUtilities.GetConverter(this.ValueType); 327if (this.ValueType == typeof(string) && !this.DisplayHintText)