public static void SetComponent(UIComponentShim source, string value)
 {
     source.SetValue(ComponentProperty, value);
 }
 public static string GetComponent(UIComponentShim source)
 {
     return((string)source.GetValue(ComponentProperty));
 }