コード例 #1
0
 private void UpdateProperty(Component target, string propertyName, object value)
 {
     workingState = ActionWorkingState.Driving;
     try
     {
         if (ActionList != null)
         {
             ActionList.TypesDescription[target.GetType()].SetValue(
                 propertyName, target, value);
         }
     }
     finally { workingState = ActionWorkingState.Listening; }
 }
コード例 #2
0
 private void UpdateProperty(Component target, string propertyName, object value)
 {
     workingState = ActionWorkingState.Driving;
     try
     {
         if (ActionList != null) ActionList.TypesDescription[target.GetType()].SetValue(
                     propertyName, target, value);
     }
     finally { workingState = ActionWorkingState.Listening; }
 }