Esempio n. 1
0
 internal static void SetPropertyInternalHelper(
     this IObservableObjectClass propertyModel,
     uint propertyId,
     object value)
 {
     if (value != null && value.GetType().GetTypeInfo().IsEnum)
     {
         value = Convert.ToInt32(value);
     }
     propertyModel.SetPropertyInternal(propertyId, value);
 }
Esempio n. 2
0
 internal static void InitializeCommandProperties(
     IObservableObjectClass model,
     Tuple <ExecuteProperty, CanExecuteProperty> callbacks)
 {
 }