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